pub struct Times {
pub last_modification_time: NaiveDateTime,
pub creation_time: NaiveDateTime,
pub last_access_time: NaiveDateTime,
pub expiry_time: NaiveDateTime,
pub location_changed: NaiveDateTime,
pub expires: bool,
pub usage_count: u32,
}Expand description
Audit times for this item
Fields§
§last_modification_time: NaiveDateTimeTime last edited
creation_time: NaiveDateTimeTime created
last_access_time: NaiveDateTimeTime last accessed
expiry_time: NaiveDateTimeTime at which this password needs rotation
location_changed: NaiveDateTimeTime at which this password was last moved within the database
expires: boolWhether this password expires
usage_count: u32Count of usages with autofill functions
Trait Implementations§
impl Eq for Times
impl StructuralPartialEq for Times
Auto Trait Implementations§
impl Freeze for Times
impl RefUnwindSafe for Times
impl Send for Times
impl Sync for Times
impl Unpin for Times
impl UnsafeUnpin for Times
impl UnwindSafe for Times
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