pub struct AccessSlotLabel {
pub lockbox_id: LockboxId,
pub slot_id: u64,
pub name: String,
pub updated_at_unix_ms: u64,
}Expand description
Local-only label for one access slot in a remembered lockbox.
Fields§
§lockbox_id: LockboxId§slot_id: u64§name: String§updated_at_unix_ms: u64Trait Implementations§
Source§impl Clone for AccessSlotLabel
impl Clone for AccessSlotLabel
Source§fn clone(&self) -> AccessSlotLabel
fn clone(&self) -> AccessSlotLabel
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 AccessSlotLabel
impl Debug for AccessSlotLabel
impl Eq for AccessSlotLabel
Source§impl PartialEq for AccessSlotLabel
impl PartialEq for AccessSlotLabel
impl StructuralPartialEq for AccessSlotLabel
Auto Trait Implementations§
impl Freeze for AccessSlotLabel
impl RefUnwindSafe for AccessSlotLabel
impl Send for AccessSlotLabel
impl Sync for AccessSlotLabel
impl Unpin for AccessSlotLabel
impl UnsafeUnpin for AccessSlotLabel
impl UnwindSafe for AccessSlotLabel
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