Enum libcoreinst::cmdline::IsoCmd
source · pub enum IsoCmd {
Embed(IsoEmbedConfig),
Show(IsoShowConfig),
Remove(IsoRemoveConfig),
Customize(IsoCustomizeConfig),
Ignition(IsoIgnitionCmd),
Network(IsoNetworkCmd),
Kargs(IsoKargsCmd),
Extract(IsoExtractCmd),
Reset(IsoResetConfig),
}Variants§
Embed(IsoEmbedConfig)
Embed an Ignition config in an ISO image
Show(IsoShowConfig)
Show the embedded Ignition config from an ISO image
Remove(IsoRemoveConfig)
Remove an existing embedded Ignition config from an ISO image
Customize(IsoCustomizeConfig)
Customize a CoreOS live ISO image
Ignition(IsoIgnitionCmd)
Embed an Ignition config in a CoreOS live ISO image
Network(IsoNetworkCmd)
Embed network settings in a CoreOS live ISO image
Kargs(IsoKargsCmd)
Modify kernel args in a CoreOS live ISO image
Extract(IsoExtractCmd)
Commands to extract files from a CoreOS live ISO image
Reset(IsoResetConfig)
Restore a CoreOS live ISO image to default settings
Trait Implementations§
source§impl CommandFactory for IsoCmd
impl CommandFactory for IsoCmd
source§impl FromArgMatches for IsoCmd
impl FromArgMatches for IsoCmd
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 Parser for IsoCmd
impl Parser for IsoCmd
source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Update from iterator, exit on error.
source§impl Subcommand for IsoCmd
impl Subcommand for IsoCmd
source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
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 Freeze for IsoCmd
impl RefUnwindSafe for IsoCmd
impl Send for IsoCmd
impl Sync for IsoCmd
impl Unpin for IsoCmd
impl UnwindSafe for IsoCmd
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