pub struct BackupContents {
pub has_config: bool,
pub has_state: bool,
pub has_templates: bool,
pub app_configs: Vec<String>,
pub total_files: usize,
}Fields§
§has_config: bool§has_state: bool§has_templates: bool§app_configs: Vec<String>§total_files: usizeTrait Implementations§
Source§impl Clone for BackupContents
impl Clone for BackupContents
Source§fn clone(&self) -> BackupContents
fn clone(&self) -> BackupContents
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 moreAuto Trait Implementations§
impl Freeze for BackupContents
impl RefUnwindSafe for BackupContents
impl Send for BackupContents
impl Sync for BackupContents
impl Unpin for BackupContents
impl UnsafeUnpin for BackupContents
impl UnwindSafe for BackupContents
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