pub struct GetSetBuild {
pub command: GetSetBuildCommand,
}
Expand description
Get or set the build version
Fields§
§command: GetSetBuildCommand
Trait Implementations§
Source§impl Args for GetSetBuild
impl Args for GetSetBuild
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 GetSetBuild
impl Clone for GetSetBuild
Source§fn clone(&self) -> GetSetBuild
fn clone(&self) -> GetSetBuild
Returns a copy 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 CommandFactory for GetSetBuild
impl CommandFactory for GetSetBuild
Source§impl Debug for GetSetBuild
impl Debug for GetSetBuild
Source§impl FromArgMatches for GetSetBuild
impl FromArgMatches for GetSetBuild
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 GetSetBuild
impl Parser for GetSetBuild
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)
Source§impl PartialEq for GetSetBuild
impl PartialEq for GetSetBuild
Source§impl TryFrom<&GetSetBuild> for Operator
impl TryFrom<&GetSetBuild> for Operator
Source§type Error = VersionError
type Error = VersionError
The type returned in the event of a conversion error.
Source§impl TryFrom<GetSetBuild> for Operator
impl TryFrom<GetSetBuild> for Operator
Source§type Error = VersionError
type Error = VersionError
The type returned in the event of a conversion error.
impl StructuralPartialEq for GetSetBuild
Auto Trait Implementations§
impl Freeze for GetSetBuild
impl RefUnwindSafe for GetSetBuild
impl Send for GetSetBuild
impl Sync for GetSetBuild
impl Unpin for GetSetBuild
impl UnwindSafe for GetSetBuild
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