pub trait NonceGenerator: Send + Sync { fn generate(&self) -> Option<Vec<u8>>; }
An interface for generating nonces.
Generates a nonce, if one is available. Otherwise, returns None.
Formats the value using the given formatter. Read more