Skip to main content

TryRngCore

Trait TryRngCore 

pub trait TryRngCore: TryRng {
    type Error: Error;
}
👎Deprecated since 0.10.0:

use TryRng instead

Expand description

DEPRECATED: stub trait to print a deprecation warning and aid discovering that TryRng is the replacement.

Required Associated Types§

type Error: Error

👎Deprecated since 0.10.0:

use TryRng instead

Error type.

Implementors§

§

impl<R> TryRngCore for R
where R: TryRng,

§

type Error = <R as TryRng>::Error