pub struct ArchiveData {
pub changed: bool,
pub archived: usize,
pub kept: usize,
pub archive_file: Option<String>,
pub backup: Option<String>,
pub restore_hint: Option<String>,
}Fields§
§changed: bool§archived: usize§kept: usize§archive_file: Option<String>§backup: Option<String>§restore_hint: Option<String>Trait Implementations§
Source§impl Debug for ArchiveData
impl Debug for ArchiveData
Source§impl<'de> Deserialize<'de> for ArchiveData
impl<'de> Deserialize<'de> for ArchiveData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ArchiveData
impl RefUnwindSafe for ArchiveData
impl Send for ArchiveData
impl Sync for ArchiveData
impl Unpin for ArchiveData
impl UnsafeUnpin for ArchiveData
impl UnwindSafe for ArchiveData
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