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: u32
The numerical weight of this item
item: T
The actual item which is being weighted
Trait Implementations
impl<T> Copy for Weighted<T> where
T: Copy, [src]
impl<T> Copy for Weighted<T> where
T: Copy, impl<T> Clone for Weighted<T> where
T: Clone, [src]
impl<T> Clone for Weighted<T> where
T: Clone, fn clone(&self) -> 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[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<T> Debug for Weighted<T> where
T: Debug, [src]
impl<T> Debug for Weighted<T> where
T: Debug,