Struct libcoreinst::cmdline::IsoCustomizeConfig
source · pub struct IsoCustomizeConfig {
pub common: CommonCustomizeConfig,
pub live_karg_append: Vec<String>,
pub live_karg_delete: Vec<String>,
pub live_karg_replace: Vec<String>,
pub force: bool,
pub output: Option<String>,
pub input: String,
}Fields§
§common: CommonCustomizeConfig§live_karg_append: Vec<String>Live kernel argument to append
Kernel argument to append to boots of the live environment.
live_karg_delete: Vec<String>Live kernel argument to delete
Kernel argument to delete from boots of the live environment.
live_karg_replace: Vec<String>Live kernel argument to replace
Kernel argument to replace for boots of the live environment, in the form key=old=new. For a default argument “a=b”, specifying “–live-karg-replace a=b=c” will produce the argument “a=c”.
force: boolOverwrite existing customizations
output: Option<String>Write ISO to a new output file
input: StringISO image
Trait Implementations§
source§impl Args for IsoCustomizeConfig
impl Args for IsoCustomizeConfig
source§impl CommandFactory for IsoCustomizeConfig
impl CommandFactory for IsoCustomizeConfig
source§fn into_app_for_update<'b>() -> Command<'b>
fn into_app_for_update<'b>() -> Command<'b>
Deprecated, replaced with
CommandFactory::command_for_updatesource§impl Debug for IsoCustomizeConfig
impl Debug for IsoCustomizeConfig
source§impl FromArgMatches for IsoCustomizeConfig
impl FromArgMatches for IsoCustomizeConfig
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 IsoCustomizeConfig
impl Parser for IsoCustomizeConfig
source§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
source§fn 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.
source§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
source§fn 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.