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

The numerical weight of this item

The actual item which is being weighted

Trait Implementations

impl<T> Copy for Weighted<T> where
    T: Copy
[src]

impl<T> Clone for Weighted<T> where
    T: Clone
[src]

[src]

impl<T> Debug for Weighted<T> where
    T: Debug
[src]

[src]