pub struct ProfileGeneration {
pub index: u16,
pub status: ProfileGenerationStatus,
pub contact_fingerprint: Vec<u8>,
pub created_at_unix_ms: u64,
pub retired_at_unix_ms: Option<u64>,
}Expand description
One generation of a vault profile.
Fields§
§index: u16§status: ProfileGenerationStatus§contact_fingerprint: Vec<u8>§created_at_unix_ms: u64§retired_at_unix_ms: Option<u64>Trait Implementations§
Source§impl Clone for ProfileGeneration
impl Clone for ProfileGeneration
Source§fn clone(&self) -> ProfileGeneration
fn clone(&self) -> ProfileGeneration
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 ProfileGeneration
impl Debug for ProfileGeneration
impl Eq for ProfileGeneration
Source§impl PartialEq for ProfileGeneration
impl PartialEq for ProfileGeneration
impl StructuralPartialEq for ProfileGeneration
Auto Trait Implementations§
impl Freeze for ProfileGeneration
impl RefUnwindSafe for ProfileGeneration
impl Send for ProfileGeneration
impl Sync for ProfileGeneration
impl Unpin for ProfileGeneration
impl UnsafeUnpin for ProfileGeneration
impl UnwindSafe for ProfileGeneration
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