Struct osrand::BufRng

source ·
pub struct BufRng { /* private fields */ }
Expand description

Pulls random integers from the OS RNG device. This object can be reused to create multiple random numbers and uses an internal BufReader around the rng device file in order to keep from doing multiple small reads.

Implementations§

source§

impl BufRng

source

pub fn new() -> Result<Self, Error>

Creates a new instance

§Errors

Returns an io error if there is a problem opening the RNG device

source

pub fn get_u16(&mut self) -> Result<u16, Error>

Gets a u16

§Errors

Returns an io error if there is a problem reading from the RNG device

source

pub fn get_u32(&mut self) -> Result<u32, Error>

Gets a u32

§Errors

Returns an io error if there is a problem reading from the RNG device

source

pub fn get_u64(&mut self) -> Result<u64, Error>

Gets a u64

§Errors

Returns an io error if there is a problem reading from the RNG device

Trait Implementations§

source§

impl From<BufRng> for RandomString

source§

fn from(value: BufRng) -> Self

Converts to this type from the input type.
source§

impl From<RandomString> for BufRng

source§

fn from(value: RandomString) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.