Struct hyper_scripter::args::RootArgs
source · [−]pub struct RootArgs {
pub hs_home: Option<String>,
pub dump_args: bool,
pub no_trace: bool,
pub humble: bool,
pub archaeology: bool,
pub no_alias: bool,
pub select: Vec<TagSelector>,
pub toggle: Vec<String>,
pub recent: Option<u32>,
pub timeless: bool,
pub prompt_level: Option<PromptLevel>,
/* private fields */
}
Fields
hs_home: Option<String>
dump_args: bool
no_trace: bool
humble: bool
archaeology: bool
no_alias: bool
select: Vec<TagSelector>
toggle: Vec<String>
recent: Option<u32>
timeless: bool
prompt_level: Option<PromptLevel>
Trait Implementations
sourceimpl CommandFactory for RootArgs
impl CommandFactory for RootArgs
sourcefn into_app<'b>() -> Command<'b>
fn into_app<'b>() -> Command<'b>
👎 Deprecated since 3.1.0:
Replaced with `CommandFactory::command
Deprecated, replaced with CommandFactory::command
sourcefn into_app_for_update<'b>() -> Command<'b>
fn into_app_for_update<'b>() -> Command<'b>
👎 Deprecated since 3.1.0:
Replaced with `CommandFactory::command_for_update
Deprecated, replaced with CommandFactory::command_for_update
sourcefn command_for_update<'help>() -> App<'help>
fn command_for_update<'help>() -> App<'help>
sourceimpl FromArgMatches for RootArgs
impl FromArgMatches for RootArgs
sourcefn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Instantiate Self
from ArgMatches
, parsing the arguments as needed. Read more
sourcefn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
Assign values from ArgMatches
to self
.
sourceimpl Parser for RootArgs
impl Parser for RootArgs
sourcefn parse_from<I, T>(itr: I) -> Self where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn parse_from<I, T>(itr: I) -> Self where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Parse from iterator, exit on error
sourcefn try_parse_from<I, T>(itr: I) -> Result<Self, Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Parse from iterator, return Err on error.
sourcefn update_from<I, T>(&mut self, itr: I) where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn update_from<I, T>(&mut self, itr: I) where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Update from iterator, exit on error
sourcefn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error> where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
Update from iterator, return Err on error.
Auto Trait Implementations
impl RefUnwindSafe for RootArgs
impl Send for RootArgs
impl Sync for RootArgs
impl Unpin for RootArgs
impl UnwindSafe for RootArgs
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more