Trait CryptoRng

pub trait CryptoRng: Rng + TryCryptoRng<Error = Infallible>

A marker trait for securely unpredictable infallible RNGs

This is a convenient trait alias for [TryCryptoRng]<Error = [Infallible]>. It is equivalent to the trait sum [Rng] + [TryCryptoRng].

Implementors