[][src]Struct rand_xoshiro::Seed512

pub struct Seed512(pub [u8; 64]);

512-bit seed for a generator.

This wrapper is necessary, because some traits required for a seed are not implemented on large arrays.

Implementations

impl Seed512[src]

pub fn iter(&self) -> Iter<'_, u8>[src]

Return an iterator over the seed.

Trait Implementations

impl AsMut<[u8]> for Seed512[src]

impl Clone for Seed512[src]

impl Debug for Seed512[src]

impl Default for Seed512[src]

Auto Trait Implementations

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.