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<DirectoryWithDirectoryOpts<'a>> for DirectoryWithDirectoryOpts<'a>
impl<'a> PartialEq<DirectoryWithDirectoryOpts<'a>> 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 ==.