pub struct ArchiveDirOptions {
pub name: Option<String>,
pub mount_path: Option<String>,
pub no_ignore: bool,
pub extra_excludes: Vec<String>,
}Fields§
§name: Option<String>Display name for the archive.
mount_path: Option<String>Mount-path prefix for files inside the archive. Default: /workspace.
no_ignore: boolIf true, skip the default exclude list (.git, node_modules, …).
extra_excludes: Vec<String>Extra directory names to exclude (matched on the segment, not the path).
Trait Implementations§
Source§impl Clone for ArchiveDirOptions
impl Clone for ArchiveDirOptions
Source§fn clone(&self) -> ArchiveDirOptions
fn clone(&self) -> ArchiveDirOptions
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 moreSource§impl Debug for ArchiveDirOptions
impl Debug for ArchiveDirOptions
Source§impl Default for ArchiveDirOptions
impl Default for ArchiveDirOptions
Source§fn default() -> ArchiveDirOptions
fn default() -> ArchiveDirOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ArchiveDirOptions
impl RefUnwindSafe for ArchiveDirOptions
impl Send for ArchiveDirOptions
impl Sync for ArchiveDirOptions
impl Unpin for ArchiveDirOptions
impl UnsafeUnpin for ArchiveDirOptions
impl UnwindSafe for ArchiveDirOptions
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