pub struct DirectoryExportOpts {
pub wipe: Option<bool>,
}
Fields§
§wipe: Option<bool>
If true, then the host directory will be wiped clean before exporting so that it exactly matches the directory being exported; this means it will delete any files on the host that aren’t in the exported dir. If false (the default), the contents of the directory will be merged with any existing contents of the host directory, leaving any existing files on the host that aren’t in the exported directory alone.
Trait Implementations§
Source§impl Debug for DirectoryExportOpts
impl Debug for DirectoryExportOpts
Source§impl PartialEq for DirectoryExportOpts
impl PartialEq for DirectoryExportOpts
impl StructuralPartialEq for DirectoryExportOpts
Auto Trait Implementations§
impl Freeze for DirectoryExportOpts
impl RefUnwindSafe for DirectoryExportOpts
impl Send for DirectoryExportOpts
impl Sync for DirectoryExportOpts
impl Unpin for DirectoryExportOpts
impl UnwindSafe for DirectoryExportOpts
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