pub struct ConfigArgs {
    pub custom_config: Option<String>,
    pub isolated: bool,
    pub sign: bool,
    pub no_sign: bool,
    pub dependent_version: Option<DependentVersion>,
    pub allow_branch: Option<Vec<String>>,
    pub commit: CommitArgs,
    pub publish: PublishArgs,
    pub tag: TagArgs,
    pub push: PushArgs,
}

Fields§

§custom_config: Option<String>

Custom config file

§isolated: bool

Ignore implicit configuration files.

§sign: bool

Sign both git commit and tag

§no_sign: bool§dependent_version: Option<DependentVersion>

Specify how workspace dependencies on this crate should be handed.

§allow_branch: Option<Vec<String>>

Comma-separated globs of branch names a release can happen from

§commit: CommitArgs§publish: PublishArgs§tag: TagArgs§push: PushArgs

Implementations§

Trait Implementations§

Report the ArgGroup::id for this set of arguments
Append to Command so it can instantiate Self. Read more
Append to Command so it can update self. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Assign values from ArgMatches to self.
Assign values from ArgMatches to self.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.