pub trait StartingTimeFactory: SendSync {
// Required method
fn starting_time(&self) -> (u64, u32);
}Expand description
A factory for entropy generation (often using the precise real time)
Required Methods§
Sourcefn starting_time(&self) -> (u64, u32)
fn starting_time(&self) -> (u64, u32)
Generate unique entropy
Implementors§
impl StartingTimeFactory for ClockStartingTimeFactory
Available on crate feature
std only.