Enum cargo::core::WorkspaceConfig [] [src]

pub enum WorkspaceConfig {
    Root {
        members: Option<Vec<String>>,
        exclude: Vec<String>,
    },
    Member {
        root: Option<String>,
    },
}

Configuration of a workspace in a manifest.

Variants

Indicates that [workspace] was present and the members were optionally specified as well.

Fields of Root

Indicates that [workspace] was present and the root field is the optional value of package.workspace, if present.

Fields of Member

Trait Implementations

impl Debug for WorkspaceConfig
[src]

[src]

Formats the value using the given formatter.

impl Clone for WorkspaceConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more