Random

Trait Random 

Source
pub trait Random {
    // Required method
    fn random() -> Self;
}

Required Methods§

Source

fn random() -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<B: Boolean> Random for AES128Key<B>

Source§

impl<B: Boolean> Random for AES192Key<B>

Source§

impl<B: Boolean> Random for AES256Key<B>

Source§

impl<F: ActuallyUsedField> Random for F

Source§

impl<T: Clone + Copy + Random> Random for RescueKey<T>