pub struct DevicesSummary {
pub this_device: Option<String>,
pub linked: usize,
pub revoked: usize,
pub unanchored: usize,
pub expiring_soon: Vec<ExpiringDevice>,
pub devices_detail: Vec<DeviceStatus>,
}Expand description
Devices summary.
Fields§
§this_device: Option<String>The device the user is on right now (the root signing device). Always counted — “Devices: none” seconds after init authorized this machine reads as “setup didn’t take”.
linked: usize§revoked: usize§unanchored: usize§expiring_soon: Vec<ExpiringDevice>§devices_detail: Vec<DeviceStatus>Trait Implementations§
Source§impl Debug for DevicesSummary
impl Debug for DevicesSummary
Auto Trait Implementations§
impl Freeze for DevicesSummary
impl RefUnwindSafe for DevicesSummary
impl Send for DevicesSummary
impl Sync for DevicesSummary
impl Unpin for DevicesSummary
impl UnsafeUnpin for DevicesSummary
impl UnwindSafe for DevicesSummary
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