pub struct FlatpakOpts {
pub extra_sources: Vec<String>,
pub extra_sources_url: Vec<String>,
pub dont_delete_build_dir: bool,
}Fields§
§extra_sources: Vec<String>Flatpak: Extra source directory can be defined multiple times
extra_sources_url: Vec<String>Flatpak: Extra source URL can be defined multiple times
dont_delete_build_dir: boolFlatpak: Do not delete the build directory
Trait Implementations§
Source§impl Args for FlatpakOpts
impl Args for FlatpakOpts
Source§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
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for FlatpakOpts
impl Clone for FlatpakOpts
Source§fn clone(&self) -> FlatpakOpts
fn clone(&self) -> FlatpakOpts
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FlatpakOpts
impl Debug for FlatpakOpts
Source§impl Default for FlatpakOpts
impl Default for FlatpakOpts
Source§fn default() -> FlatpakOpts
fn default() -> FlatpakOpts
Returns the “default value” for a type. Read more
Source§impl FromArgMatches for FlatpakOpts
impl FromArgMatches for FlatpakOpts
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.Auto Trait Implementations§
impl Freeze for FlatpakOpts
impl RefUnwindSafe for FlatpakOpts
impl Send for FlatpakOpts
impl Sync for FlatpakOpts
impl Unpin for FlatpakOpts
impl UnwindSafe for FlatpakOpts
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