Struct sgx_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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for Weighted<T> where
    T: Send

impl<T> Sync for Weighted<T> where
    T: Sync