pub struct ApiProjectsCreateCmd {Show 17 fields
pub name: String,
pub path: String,
pub organization_id: Option<String>,
pub slug: Option<String>,
pub version: Option<String>,
pub build_dir: Option<String>,
pub runtime: Option<String>,
pub default_branch: Option<String>,
pub root_directory: Option<String>,
pub build_command: Option<String>,
pub install_command: Option<String>,
pub start_command: Option<String>,
pub output_directory: Option<String>,
pub repository_json: Option<String>,
pub runtime_policy_json: Option<String>,
pub metadata_json: Option<String>,
pub target: ApiTargetOptions,
}Fields§
§name: String§path: String§organization_id: Option<String>§slug: Option<String>§version: Option<String>§build_dir: Option<String>§runtime: Option<String>§default_branch: Option<String>§root_directory: Option<String>§build_command: Option<String>§install_command: Option<String>§start_command: Option<String>§output_directory: Option<String>§repository_json: Option<String>§runtime_policy_json: Option<String>§metadata_json: Option<String>§target: ApiTargetOptionsTrait Implementations§
Source§impl Args for ApiProjectsCreateCmd
impl Args for ApiProjectsCreateCmd
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 Debug for ApiProjectsCreateCmd
impl Debug for ApiProjectsCreateCmd
Source§impl FromArgMatches for ApiProjectsCreateCmd
impl FromArgMatches for ApiProjectsCreateCmd
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 ApiProjectsCreateCmd
impl RefUnwindSafe for ApiProjectsCreateCmd
impl Send for ApiProjectsCreateCmd
impl Sync for ApiProjectsCreateCmd
impl Unpin for ApiProjectsCreateCmd
impl UnsafeUnpin for ApiProjectsCreateCmd
impl UnwindSafe for ApiProjectsCreateCmd
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more