pub enum Command {
User(UserCommand),
}
Expand description
An administrative command-line command.
Variants§
User(UserCommand)
A command operating on User
s.
Implementations§
§impl Command
impl Command
pub fn execute<SC>(self, storage: &SC) -> Result<(), Error>where
SC: StorageConnection,
pub fn execute<SC>(self, storage: &SC) -> Result<(), Error>where SC: StorageConnection,
Executes the command on storage
.
pub async fn execute_async<SC>(
self,
storage: &SC
) -> impl Future<Output = Result<(), Error>>where
SC: AsyncStorageConnection,
pub async fn execute_async<SC>( self, storage: &SC ) -> impl Future<Output = Result<(), Error>>where SC: AsyncStorageConnection,
Executes the command on storage
.
Trait Implementations§
§impl FromArgMatches for Command
impl FromArgMatches for Command
§fn from_arg_matches(
__clap_arg_matches: &ArgMatches
) -> Result<Command, Error<RichFormatter>>
fn from_arg_matches( __clap_arg_matches: &ArgMatches ) -> Result<Command, Error<RichFormatter>>
§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Command, Error<RichFormatter>>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Command, Error<RichFormatter>>
§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error<RichFormatter>>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error<RichFormatter>>
Assign values from
ArgMatches
to self
.§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error<RichFormatter>>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error<RichFormatter>>
Assign values from
ArgMatches
to self
.§impl Subcommand for Command
impl Subcommand for Command
§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommandAuto Trait Implementations§
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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