Enum brane_ctl::spec::StartSubcommand
source · 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: ImageSource
The path (or other source) to the brane-prx
service.
§
brane_api: ImageSource
The path (or other source) to the brane-api
service.
§
brane_drv: ImageSource
The path (or other source) to the brane-drv
service.
§
brane_plr: ImageSource
The path (or other source) to the brane-plr
service.
Worker
Starts a worker node.
Fields
§
brane_prx: ImageSource
The path (or other source) to the brane-prx
service.
§
brane_chk: ImageSource
The path (or other source) to the brane-chk
service.
§
brane_reg: ImageSource
The path (or other source) to the brane-api
service.
§
brane_job: ImageSource
The path (or other source) to the brane-drv
service.
Proxy
Starts a proxy node.
Fields
§
brane_prx: ImageSource
The 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::Request
source§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