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> Copy for Weighted<T>
[src]
impl<T: Copy> Copy for Weighted<T>
impl<T: Clone> Clone for Weighted<T>
[src]
impl<T: Clone> Clone for Weighted<T>
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> Debug for Weighted<T>
[src]
impl<T: Debug> Debug for Weighted<T>