pub struct AuthBlobMeta {
pub name: String,
pub created_at: i64,
pub last_used_at: Option<i64>,
}Expand description
Metadata for a stored auth blob.
Fields§
§name: String§created_at: i64§last_used_at: Option<i64>Trait Implementations§
Source§impl Clone for AuthBlobMeta
impl Clone for AuthBlobMeta
Source§fn clone(&self) -> AuthBlobMeta
fn clone(&self) -> AuthBlobMeta
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 AuthBlobMeta
impl Debug for AuthBlobMeta
Source§impl PartialEq for AuthBlobMeta
impl PartialEq for AuthBlobMeta
Source§fn eq(&self, other: &AuthBlobMeta) -> bool
fn eq(&self, other: &AuthBlobMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthBlobMeta
impl StructuralPartialEq for AuthBlobMeta
Auto Trait Implementations§
impl Freeze for AuthBlobMeta
impl RefUnwindSafe for AuthBlobMeta
impl Send for AuthBlobMeta
impl Sync for AuthBlobMeta
impl Unpin for AuthBlobMeta
impl UnsafeUnpin for AuthBlobMeta
impl UnwindSafe for AuthBlobMeta
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