pub enum StartSubcommand {
Central {
aux_scylla: Option<ImageSource>,
brane_prx: ImageSource,
brane_api: ImageSource,
brane_drv: ImageSource,
brane_plr: ImageSource,
},
Worker {
brane_prx: ImageSource,
brane_chk: ImageSource,
brane_reg: ImageSource,
brane_job: ImageSource,
},
Proxy {
brane_prx: ImageSource,
},
}Expand description
Defines the start subcommand, which basically defines the possible kinds of nodes to start.
Variants§
Central
Starts a central node.
Fields
§
aux_scylla: Option<ImageSource>THe path (or other source) to the aux-scylla service.
§
brane_prx: ImageSourceThe path (or other source) to the brane-prx service.
§
brane_api: ImageSourceThe path (or other source) to the brane-api service.
§
brane_drv: ImageSourceThe path (or other source) to the brane-drv service.
§
brane_plr: ImageSourceThe path (or other source) to the brane-plr service.
Worker
Starts a worker node.
Fields
§
brane_prx: ImageSourceThe path (or other source) to the brane-prx service.
§
brane_chk: ImageSourceThe path (or other source) to the brane-chk service.
§
brane_reg: ImageSourceThe path (or other source) to the brane-api service.
§
brane_job: ImageSourceThe path (or other source) to the brane-drv service.
Proxy
Starts a proxy node.
Fields
§
brane_prx: ImageSourceThe path (or other source) to the brane-prx service.
Trait Implementations§
Source§impl Debug for StartSubcommand
impl Debug for StartSubcommand
Source§impl FromArgMatches for StartSubcommand
impl FromArgMatches for StartSubcommand
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<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Subcommand for StartSubcommand
impl Subcommand for StartSubcommand
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self can parse a specific subcommandAuto Trait Implementations§
impl Freeze for StartSubcommand
impl RefUnwindSafe for StartSubcommand
impl Send for StartSubcommand
impl Sync for StartSubcommand
impl Unpin for StartSubcommand
impl UnwindSafe for StartSubcommand
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestSource§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self to an expression for Diesel’s query builder. Read more