Struct blue_build::build::BuildCommand
source · pub struct BuildCommand { /* private fields */ }Implementations§
source§impl BuildCommand
impl BuildCommand
sourcepub fn builder() -> BuildCommandBuilder<((), (), (), (), (), (), (), ())>
pub fn builder() -> BuildCommandBuilder<((), (), (), (), (), (), (), ())>
Create a builder for building BuildCommand.
On the builder, call .recipe(...), .containerfile(...)(optional), .rebase(...), .push(...)(optional), .registry(...)(optional), .registry_path(...)(optional), .username(...)(optional), .password(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of BuildCommand.
Trait Implementations§
source§impl Args for BuildCommand
impl Args for BuildCommand
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
source§impl Clone for BuildCommand
impl Clone for BuildCommand
source§fn clone(&self) -> BuildCommand
fn clone(&self) -> BuildCommand
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 Debug for BuildCommand
impl Debug for BuildCommand
source§impl FromArgMatches for BuildCommand
impl FromArgMatches for BuildCommand
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 RefUnwindSafe for BuildCommand
impl Send for BuildCommand
impl Sync for BuildCommand
impl Unpin for BuildCommand
impl UnwindSafe for BuildCommand
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