[][src]Trait rand::rngs::os::OsRngImpl

trait OsRngImpl where
    Self: Sized
{ fn new() -> Result<Self, Error>;
fn fill_chunk(&mut self, dest: &mut [u8]) -> Result<(), Error>;
fn method_str(&self) -> &'static str; fn test_initialized(
        &mut self,
        _dest: &mut [u8],
        _blocking: bool
    ) -> Result<usize, Error> { ... }
fn max_chunk_size(&self) -> usize { ... } }

Required Methods

Provided Methods

Implementors

impl OsRngImpl for OsRng
[src]