pub struct KnownLockbox {
pub lockbox_id: LockboxId,
pub path: String,
pub last_seen_unix_ms: u64,
}Expand description
Lockbox path remembered by the local vault for diagnostics and bulk access refresh operations.
Fields§
§lockbox_id: LockboxIdStable id embedded in the lockbox.
path: StringPath used when this lockbox was last seen.
last_seen_unix_ms: u64Last time this record was updated.
Trait Implementations§
Source§impl Clone for KnownLockbox
impl Clone for KnownLockbox
Source§fn clone(&self) -> KnownLockbox
fn clone(&self) -> KnownLockbox
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 KnownLockbox
impl Debug for KnownLockbox
impl Eq for KnownLockbox
Source§impl PartialEq for KnownLockbox
impl PartialEq for KnownLockbox
impl StructuralPartialEq for KnownLockbox
Auto Trait Implementations§
impl Freeze for KnownLockbox
impl RefUnwindSafe for KnownLockbox
impl Send for KnownLockbox
impl Sync for KnownLockbox
impl Unpin for KnownLockbox
impl UnsafeUnpin for KnownLockbox
impl UnwindSafe for KnownLockbox
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