[][src]Struct smoke::Seed

pub struct Seed(_);

Seed of random generation

There should be only one instance of this for a given instance of a test suite, so that in case of issues, the printed seed of the failed attempt can be re-used as test driven development

All pseudo random generators need to be derived from this

Implementations

impl Seed[src]

pub fn new() -> Self[src]

Create a new random seed, using the system time and the thread-id.

Whilst this is not particularly random, we just need a little randomization not a full blown unguessable entropy. The quality of this randomness is not particularly important or interesting.

Trait Implementations

impl Clone for Seed[src]

impl Copy for Seed[src]

impl Debug for Seed[src]

impl Display for Seed[src]

impl Eq for Seed[src]

impl From<u128> for Seed[src]

impl FromStr for Seed[src]

type Err = &'static str

The associated error which can be returned from parsing.

impl PartialEq<Seed> for Seed[src]

impl StructuralEq for Seed[src]

impl StructuralPartialEq for Seed[src]

Auto Trait Implementations

impl RefUnwindSafe for Seed

impl Send for Seed

impl Sync for Seed

impl Unpin for Seed

impl UnwindSafe for Seed

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.