Struct cargo::core::WorkspaceRootConfig
source · pub struct WorkspaceRootConfig { /* private fields */ }
Expand description
Intermediate configuration of a workspace root in a manifest.
Knows the Workspace Root path, as well as members
and exclude
lists of path patterns, which
together tell if some path is recognized as a member by this root or not.
Implementations§
source§impl WorkspaceRootConfig
impl WorkspaceRootConfig
sourcepub fn new(
root_dir: &Path,
members: &Option<Vec<String>>,
default_members: &Option<Vec<String>>,
exclude: &Option<Vec<String>>,
inheritable: &Option<InheritableFields>,
custom_metadata: &Option<Value>
) -> WorkspaceRootConfig
pub fn new( root_dir: &Path, members: &Option<Vec<String>>, default_members: &Option<Vec<String>>, exclude: &Option<Vec<String>>, inheritable: &Option<InheritableFields>, custom_metadata: &Option<Value> ) -> WorkspaceRootConfig
Creates a new Intermediate Workspace Root configuration.
pub fn inheritable(&self) -> &InheritableFields
Trait Implementations§
source§impl Clone for WorkspaceRootConfig
impl Clone for WorkspaceRootConfig
source§fn clone(&self) -> WorkspaceRootConfig
fn clone(&self) -> WorkspaceRootConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more