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> Copy for Weighted<T>
[src]

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter.