Trait mbedtls::rng::Random

source ·
pub trait Random: RngCallback {
    // Provided method
    fn random(&mut self, data: &mut [u8]) -> Result<()>
       where Self: Sized { ... }
}

Provided Methods§

source

fn random(&mut self, data: &mut [u8]) -> Result<()>
where Self: Sized,

Implementors§

source§

impl<'r, F: RngCallback> Random for F