Struct pcg_rand::stream::SpecificSeqStream[][src]

pub struct SpecificSeqStream<Itype> { /* fields omitted */ }

By default this stream provides the same stream as OneSeqStream. The advantage to this stream is it can be changed at runtime. This incurs an extra Itype of storage overhead.

Trait Implementations

impl Stream<u32> for SpecificSeqStream<u32>
[src]

impl Stream<u64> for SpecificSeqStream<u64>
[src]

impl Stream<u128> for SpecificSeqStream<u128>
[src]

Auto Trait Implementations

impl<Itype> Send for SpecificSeqStream<Itype> where
    Itype: Send

impl<Itype> Sync for SpecificSeqStream<Itype> where
    Itype: Sync