Struct pcg_rand::PCGStateInfo[][src]

pub struct PCGStateInfo<Itype> {
    pub state: Itype,
    pub increment: Itype,
    pub multiplier: Itype,
    pub internal_width: usize,
    pub output_width: usize,
    pub output_mixin: String,
}

Fields

state: Itypeincrement: Itypemultiplier: Itypeinternal_width: usizeoutput_width: usizeoutput_mixin: String

Auto Trait Implementations

impl<Itype> RefUnwindSafe for PCGStateInfo<Itype> where
    Itype: RefUnwindSafe
[src]

impl<Itype> Send for PCGStateInfo<Itype> where
    Itype: Send
[src]

impl<Itype> Sync for PCGStateInfo<Itype> where
    Itype: Sync
[src]

impl<Itype> Unpin for PCGStateInfo<Itype> where
    Itype: Unpin
[src]

impl<Itype> UnwindSafe for PCGStateInfo<Itype> where
    Itype: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,