Struct xoshiro::Seed512[][src]

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.

Methods

impl Seed512
[src]

Return an iterator over the seed.

Trait Implementations

impl Clone for Seed512
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Seed512
[src]

Formats the value using the given formatter. Read more

impl Default for Seed512
[src]

Returns the "default value" for a type. Read more

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

Performs the conversion.

Auto Trait Implementations

impl Send for Seed512

impl Sync for Seed512