pub struct NonceEntry {
pub nonce: String,
pub created_at: i64,
pub context: Option<String>,
}Expand description
Represents a stored nonce entry with its metadata.
Fields§
§nonce: StringThe unique nonce value
created_at: i64Unix timestamp when the nonce was created
context: Option<String>Optional context for nonce scoping
Trait Implementations§
Source§impl Clone for NonceEntry
impl Clone for NonceEntry
Source§fn clone(&self) -> NonceEntry
fn clone(&self) -> NonceEntry
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 moreAuto Trait Implementations§
impl Freeze for NonceEntry
impl RefUnwindSafe for NonceEntry
impl Send for NonceEntry
impl Sync for NonceEntry
impl Unpin for NonceEntry
impl UnwindSafe for NonceEntry
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