pub struct AuthCompletionRecord {
pub attempt_id: String,
pub generation: u64,
pub account_id: Option<String>,
pub session: Option<String>,
}Expand description
The latest causally-bound browser completion. Only one completion can remain
current because every identity-changing credential mutation advances
generation; a later mutation therefore supersedes this proof.
Fields§
§attempt_id: String§generation: u64§account_id: Option<String>§session: Option<String>Trait Implementations§
Source§impl Clone for AuthCompletionRecord
impl Clone for AuthCompletionRecord
Source§fn clone(&self) -> AuthCompletionRecord
fn clone(&self) -> AuthCompletionRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthCompletionRecord
impl Debug for AuthCompletionRecord
Source§impl<'de> Deserialize<'de> for AuthCompletionRecord
impl<'de> Deserialize<'de> for AuthCompletionRecord
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
impl Eq for AuthCompletionRecord
Source§impl PartialEq for AuthCompletionRecord
impl PartialEq for AuthCompletionRecord
Source§impl Serialize for AuthCompletionRecord
impl Serialize for AuthCompletionRecord
impl StructuralPartialEq for AuthCompletionRecord
Auto Trait Implementations§
impl Freeze for AuthCompletionRecord
impl RefUnwindSafe for AuthCompletionRecord
impl Send for AuthCompletionRecord
impl Sync for AuthCompletionRecord
impl Unpin for AuthCompletionRecord
impl UnsafeUnpin for AuthCompletionRecord
impl UnwindSafe for AuthCompletionRecord
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