Struct tauri_utils::config::CliConfig
source · [−]pub struct CliConfig {
pub description: Option<String>,
pub long_description: Option<String>,
pub before_help: Option<String>,
pub after_help: Option<String>,
pub args: Option<Vec<CliArg>>,
pub subcommands: Option<HashMap<String, CliConfig>>,
}Expand description
describes a CLI configuration
Fields
description: Option<String>Command description which will be shown on the help information.
long_description: Option<String>Command long description which will be shown on the help information.
before_help: Option<String>Adds additional help information to be displayed in addition to auto-generated help. This information is displayed before the auto-generated help information. This is often used for header information.
after_help: Option<String>Adds additional help information to be displayed in addition to auto-generated help. This information is displayed after the auto-generated help information. This is often used to describe how to use the arguments, or caveats to be noted.
args: Option<Vec<CliArg>>List of arguments for the command
subcommands: Option<HashMap<String, CliConfig>>List of subcommands of this command
Implementations
sourceimpl CliConfig
impl CliConfig
sourcepub fn subcommands(&self) -> Option<&HashMap<String, CliConfig>>
pub fn subcommands(&self) -> Option<&HashMap<String, CliConfig>>
List of subcommands of this command
sourcepub fn description(&self) -> Option<&String>
pub fn description(&self) -> Option<&String>
Command description which will be shown on the help information.
sourcepub fn long_description(&self) -> Option<&String>
pub fn long_description(&self) -> Option<&String>
Command long description which will be shown on the help information.
sourcepub fn before_help(&self) -> Option<&String>
pub fn before_help(&self) -> Option<&String>
Adds additional help information to be displayed in addition to auto-generated help. This information is displayed before the auto-generated help information. This is often used for header information.
sourcepub fn after_help(&self) -> Option<&String>
pub fn after_help(&self) -> Option<&String>
Adds additional help information to be displayed in addition to auto-generated help. This information is displayed after the auto-generated help information. This is often used to describe how to use the arguments, or caveats to be noted.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for CliConfig
impl<'de> Deserialize<'de> for CliConfig
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CliConfig
Auto Trait Implementations
impl RefUnwindSafe for CliConfig
impl Send for CliConfig
impl Sync for CliConfig
impl Unpin for CliConfig
impl UnwindSafe for CliConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more