pub struct OtpGeneratorConfig {
pub entropy_bytes: usize,
pub default_ttl_seconds: i64,
pub default_max_uses: u32,
}Expand description
Configuration for the OTP generator.
Fields§
§entropy_bytes: usizeNumber of random bytes to generate (minimum 16 = 128 bits per R7).
default_ttl_seconds: i64Default token lifetime.
default_max_uses: u32Default maximum usage count (1 = single-use).
Trait Implementations§
Source§impl Clone for OtpGeneratorConfig
impl Clone for OtpGeneratorConfig
Source§fn clone(&self) -> OtpGeneratorConfig
fn clone(&self) -> OtpGeneratorConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OtpGeneratorConfig
impl Debug for OtpGeneratorConfig
Source§impl Default for OtpGeneratorConfig
impl Default for OtpGeneratorConfig
Source§impl<'de> Deserialize<'de> for OtpGeneratorConfig
impl<'de> Deserialize<'de> for OtpGeneratorConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OtpGeneratorConfig
impl RefUnwindSafe for OtpGeneratorConfig
impl Send for OtpGeneratorConfig
impl Sync for OtpGeneratorConfig
impl Unpin for OtpGeneratorConfig
impl UnsafeUnpin for OtpGeneratorConfig
impl UnwindSafe for OtpGeneratorConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more