Struct node_template::cli::Cli
source · pub struct Cli {
pub subcommand: Option<Subcommand>,
pub run: RunCmd,
}
Fields§
§subcommand: Option<Subcommand>
§run: RunCmd
Trait Implementations§
source§impl Args for Cli
impl Args for Cli
source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id
][crate::ArgGroup::id] for this set of argumentssource§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
source§impl FromArgMatches for Cli
impl FromArgMatches for Cli
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Self, Error>
source§fn 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
.source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§impl Parser for Cli
impl Parser for Cli
§fn try_parse() -> Result<Self, Error<RichFormatter>>
fn try_parse() -> Result<Self, Error<RichFormatter>>
Parse from
std::env::args_os()
, return Err on error.§fn parse_from<I, T>(itr: I) -> Selfwhere
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn parse_from<I, T>(itr: I) -> Selfwhere I: IntoIterator<Item = T>, T: Into<OsString> + Clone,
Parse from iterator, exit on error
§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error<RichFormatter>>where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error<RichFormatter>>where I: IntoIterator<Item = T>, T: Into<OsString> + Clone,
Parse from iterator, return Err on error.
§fn 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
§fn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error<RichFormatter>>where
I: IntoIterator<Item = T>,
T: Into<OsString> + Clone,
fn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error<RichFormatter>>where I: IntoIterator<Item = T>, T: Into<OsString> + Clone,
Update from iterator, return Err on error.
source§impl SubstrateCli for Cli
impl SubstrateCli for Cli
source§fn impl_version() -> String
fn impl_version() -> String
Implementation version. Read more
source§fn description() -> String
fn description() -> String
Executable file description.
Executable file author.
source§fn support_url() -> String
fn support_url() -> String
Support URL.
source§fn copyright_start_year() -> i32
fn copyright_start_year() -> i32
Copyright starting year (x-current year)
source§fn executable_name() -> String
fn executable_name() -> String
Executable file name. Read more
source§fn from_args() -> Selfwhere
Self: Parser + Sized,
fn from_args() -> Selfwhere Self: Parser + Sized,
Helper function used to parse the command line arguments. This is the equivalent of
[
clap::Parser::parse()
]. Read moresource§fn from_iter<I>(iter: I) -> Selfwhere
Self: Parser + Sized,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
fn from_iter<I>(iter: I) -> Selfwhere Self: Parser + Sized, I: IntoIterator, <I as IntoIterator>::Item: Into<OsString> + Clone,
Helper function used to parse the command line arguments. This is the equivalent of
[
clap::Parser::parse_from
]. Read moresource§fn try_from_iter<I>(iter: I) -> Result<Self, Error<RichFormatter>>where
Self: Parser + Sized,
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString> + Clone,
fn try_from_iter<I>(iter: I) -> Result<Self, Error<RichFormatter>>where Self: Parser + Sized, I: IntoIterator, <I as IntoIterator>::Item: Into<OsString> + Clone,
Helper function used to parse the command line arguments. This is the equivalent of
[
clap::Parser::try_parse_from
] Read moresource§fn create_configuration<T, DVC>(
&self,
command: &T,
tokio_handle: Handle
) -> Result<Configuration, Error>where
T: CliConfiguration<DVC>,
DVC: DefaultConfigurationValues,
fn create_configuration<T, DVC>( &self, command: &T, tokio_handle: Handle ) -> Result<Configuration, Error>where T: CliConfiguration<DVC>, DVC: DefaultConfigurationValues,
Only create a Configuration for the command provided in argument
source§fn create_runner<T, DVC>(&self, command: &T) -> Result<Runner<Self>, Error>where
T: CliConfiguration<DVC>,
DVC: DefaultConfigurationValues,
fn create_runner<T, DVC>(&self, command: &T) -> Result<Runner<Self>, Error>where T: CliConfiguration<DVC>, DVC: DefaultConfigurationValues,
Create a runner for the command provided in argument. This will create a Configuration and
a tokio runtime
source§fn create_runner_with_logger_hook<T, F>(
&self,
command: &T,
logger_hook: F
) -> Result<Runner<Self>, Error>where
T: CliConfiguration<()>,
F: FnOnce(&mut LoggerBuilder, &Configuration),
fn create_runner_with_logger_hook<T, F>( &self, command: &T, logger_hook: F ) -> Result<Runner<Self>, Error>where T: CliConfiguration<()>, F: FnOnce(&mut LoggerBuilder, &Configuration),
Create a runner for the command provided in argument. The
logger_hook
can be used to setup
a custom profiler or update the logger configuration before it is initialized. Read moreAuto Trait Implementations§
impl RefUnwindSafe for Cli
impl Send for Cli
impl Sync for Cli
impl Unpin for Cli
impl UnwindSafe for Cli
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.