Enum nuts_tool::cli::container::ContainerCommand
source · pub enum ContainerCommand {
Create(ContainerCreateArgs),
Delete(ContainerDeleteArgs),
Info(ContainerInfoArgs),
List(ContainerListArgs),
Read(ContainerReadArgs),
Write(ContainerWriteArgs),
}Variants§
Create(ContainerCreateArgs)
Creates a nuts-container
Delete(ContainerDeleteArgs)
Removes a container again
Info(ContainerInfoArgs)
Prints general information about the container
List(ContainerListArgs)
Lists all available container
Read(ContainerReadArgs)
Reads a block from the container
Write(ContainerWriteArgs)
Writes a block into the container
Implementations§
Trait Implementations§
source§impl Debug for ContainerCommand
impl Debug for ContainerCommand
source§impl FromArgMatches for ContainerCommand
impl FromArgMatches for ContainerCommand
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<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches to self.source§impl Subcommand for ContainerCommand
impl Subcommand for ContainerCommand
source§fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
source§fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
source§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 ContainerCommand
impl Send for ContainerCommand
impl Sync for ContainerCommand
impl Unpin for ContainerCommand
impl UnwindSafe for ContainerCommand
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