pub struct CcaTestsUpdateEmuSubCmds {
pub rebuild_plane0_linux: bool,
pub rebuild_rootfs: bool,
pub tfa_rev: Option<String>,
pub tfrmm_rev: Option<String>,
pub plane0_linux_rev: Option<String>,
}Fields§
§rebuild_plane0_linux: boolRebuild the plane0 Linux image from the existing source tree.
rebuild_rootfs: boolRebuild the shrinkwrap-generated rootfs image.
tfa_rev: Option<String>Update TF-A to specified revision and rebuild.
tfrmm_rev: Option<String>Update TF-RMM to specified revision and rebuild.
plane0_linux_rev: Option<String>Update plane0 Linux to specified revision and rebuild.
Trait Implementations§
Source§impl Args for CcaTestsUpdateEmuSubCmds
impl Args for CcaTestsUpdateEmuSubCmds
Source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id][crate::ArgGroup::id] for this set of argumentsSource§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 FromArgMatches for CcaTestsUpdateEmuSubCmds
impl FromArgMatches for CcaTestsUpdateEmuSubCmds
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 CcaTestsUpdateEmuSubCmds
impl RefUnwindSafe for CcaTestsUpdateEmuSubCmds
impl Send for CcaTestsUpdateEmuSubCmds
impl Sync for CcaTestsUpdateEmuSubCmds
impl Unpin for CcaTestsUpdateEmuSubCmds
impl UnsafeUnpin for CcaTestsUpdateEmuSubCmds
impl UnwindSafe for CcaTestsUpdateEmuSubCmds
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