pub enum Subcommand {
Show 16 variants
Changelog,
Choose {
overrides: BTreeMap<String, String>,
chooser: Option<String>,
},
Command {
arguments: Vec<OsString>,
binary: OsString,
overrides: BTreeMap<String, String>,
},
Completions {
shell: Shell,
},
Dump,
Edit,
Evaluate {
overrides: BTreeMap<String, String>,
variable: Option<String>,
},
Format,
Groups,
Init,
List {
path: ModulePath,
},
Man,
Run {
arguments: Vec<String>,
overrides: BTreeMap<String, String>,
},
Show {
path: ModulePath,
},
Summary,
Variables,
}
Variantsยง
Changelog
Choose
Command
Completions
Dump
Edit
Evaluate
Format
Groups
Init
List
Fields
ยง
path: ModulePath
Man
Run
Show
Fields
ยง
path: ModulePath
Summary
Variables
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Clone for Subcommand
impl Clone for Subcommand
Sourceยงfn clone(&self) -> Subcommand
fn clone(&self) -> Subcommand
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 moreSourceยงimpl Debug for Subcommand
impl Debug for Subcommand
Sourceยงimpl PartialEq for Subcommand
impl PartialEq for Subcommand
impl StructuralPartialEq for Subcommand
Auto Trait Implementationsยง
impl Freeze for Subcommand
impl RefUnwindSafe for Subcommand
impl Send for Subcommand
impl Sync for Subcommand
impl Unpin for Subcommand
impl UnwindSafe for Subcommand
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