pub struct RegistryOverrides {
pub identity_ref: Option<String>,
pub identity_blob: Option<String>,
pub attestation_prefix: Option<String>,
pub attestation_blob: Option<String>,
}Fields§
§identity_ref: Option<String>§identity_blob: Option<String>§attestation_prefix: Option<String>§attestation_blob: Option<String>Trait Implementations§
Source§impl Args for RegistryOverrides
impl Args for RegistryOverrides
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 RegistryOverrides
impl Clone for RegistryOverrides
Source§fn clone(&self) -> RegistryOverrides
fn clone(&self) -> RegistryOverrides
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 RegistryOverrides
impl Debug for RegistryOverrides
Source§impl Default for RegistryOverrides
impl Default for RegistryOverrides
Source§fn default() -> RegistryOverrides
fn default() -> RegistryOverrides
Returns the “default value” for a type. Read more
Source§impl FromArgMatches for RegistryOverrides
impl FromArgMatches for RegistryOverrides
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 RegistryOverrides
impl RefUnwindSafe for RegistryOverrides
impl Send for RegistryOverrides
impl Sync for RegistryOverrides
impl Unpin for RegistryOverrides
impl UnsafeUnpin for RegistryOverrides
impl UnwindSafe for RegistryOverrides
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