Struct dagger_sdk::DirectoryWithDirectoryOpts
source · pub struct DirectoryWithDirectoryOpts<'a> {
pub exclude: Option<Vec<&'a str>>,
pub include: Option<Vec<&'a str>>,
}Fields§
§exclude: Option<Vec<&'a str>>Exclude artifacts that match the given pattern (e.g., [“node_modules/”, “.git*”]).
include: Option<Vec<&'a str>>Include only artifacts that match the given pattern (e.g., [“app/”, “package.*”]).
Trait Implementations§
source§impl<'a> Debug for DirectoryWithDirectoryOpts<'a>
impl<'a> Debug for DirectoryWithDirectoryOpts<'a>
source§impl<'a> PartialEq for DirectoryWithDirectoryOpts<'a>
impl<'a> PartialEq for DirectoryWithDirectoryOpts<'a>
source§fn eq(&self, other: &DirectoryWithDirectoryOpts<'a>) -> bool
fn eq(&self, other: &DirectoryWithDirectoryOpts<'a>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<'a> StructuralPartialEq for DirectoryWithDirectoryOpts<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for DirectoryWithDirectoryOpts<'a>
impl<'a> Send for DirectoryWithDirectoryOpts<'a>
impl<'a> Sync for DirectoryWithDirectoryOpts<'a>
impl<'a> Unpin for DirectoryWithDirectoryOpts<'a>
impl<'a> UnwindSafe for DirectoryWithDirectoryOpts<'a>
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