Trait nrf51_hal::rng::Read [] [src]

pub trait Read {
    type Error;
    fn read(&mut self, buffer: &mut [u8]) -> Result<(), Self::Error>;
}

Blocking read

Associated Types

Error type

Required Methods

Reads enough bytes from hardware random number generator to fill buffer

Implementors