Struct rand::distributions::Weighted
[−]
[src]
pub struct Weighted<T> {
pub weight: u32,
pub item: T,
}A value with a particular weight for use with WeightedChoice.
Fields
weight | The numerical weight of this item |
item | The actual item which is being weighted |
Trait Implementations
Derived Implementations
impl<T: Copy> Copy for Weighted<T>[src]
impl<T: Clone> Clone for Weighted<T>[src]
fn clone(&self) -> Weighted<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more