pub struct FactorsTriggerCommand<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> {
pub log: Option<PathBuf>,
pub disable_cache: bool,
pub cache: Option<PathBuf>,
pub disable_pooling: bool,
pub follow_components: Vec<String>,
pub silence_component_logs: bool,
pub runtime_config_file: Option<PathBuf>,
pub state_dir: Option<String>,
pub trigger_args: T::CliArgs,
pub builder_args: B::CliArgs,
pub help_args_only: bool,
pub launch_metadata_only: bool,
}
Expand description
A command that runs a TriggerExecutor.
Fields§
§log: Option<PathBuf>
Log directory for the stdout and stderr of components. Setting to the empty string disables logging to disk.
disable_cache: bool
Disable Wasmtime cache.
cache: Option<PathBuf>
Wasmtime cache configuration file.
disable_pooling: bool
Disable Wasmtime’s pooling instance allocator.
follow_components: Vec<String>
Print output to stdout/stderr only for given component(s)
silence_component_logs: bool
Silence all component output to stdout/stderr
runtime_config_file: Option<PathBuf>
Configuration file for config providers and wasmtime config.
state_dir: Option<String>
Set the application state directory path. This is used in the default locations for logs, key value stores, etc.
For local apps, this defaults to .spin/
relative to the spin.toml
file.
For remote apps, this has no default (unset).
Passing an empty value forces the value to be unset.
trigger_args: T::CliArgs
§builder_args: B::CliArgs
§help_args_only: bool
§launch_metadata_only: bool
Implementations§
Source§impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> FactorsTriggerCommand<T, B>
impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> FactorsTriggerCommand<T, B>
Trait Implementations§
Source§impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> Args for FactorsTriggerCommand<T, B>
impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> Args for FactorsTriggerCommand<T, B>
Source§impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> CommandFactory for FactorsTriggerCommand<T, B>
impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> CommandFactory for FactorsTriggerCommand<T, B>
Source§fn into_app_for_update<'b>() -> Command<'b>
fn into_app_for_update<'b>() -> Command<'b>
Deprecated, replaced with
CommandFactory::command_for_update
Source§impl<T: Debug + Trigger<B::Factors>, B: Debug + RuntimeFactorsBuilder> Debug for FactorsTriggerCommand<T, B>
impl<T: Debug + Trigger<B::Factors>, B: Debug + RuntimeFactorsBuilder> Debug for FactorsTriggerCommand<T, B>
Source§impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> FromArgMatches for FactorsTriggerCommand<T, B>
impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> FromArgMatches for FactorsTriggerCommand<T, B>
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<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> Parser for FactorsTriggerCommand<T, B>
impl<T: Trigger<B::Factors>, B: RuntimeFactorsBuilder> Parser for FactorsTriggerCommand<T, B>
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)
Update from iterator, exit on error
Auto Trait Implementations§
impl<T, B> Freeze for FactorsTriggerCommand<T, B>where
<T as Trigger<<B as RuntimeFactorsBuilder>::Factors>>::CliArgs: Freeze,
<B as RuntimeFactorsBuilder>::CliArgs: Freeze,
impl<T, B> RefUnwindSafe for FactorsTriggerCommand<T, B>where
<T as Trigger<<B as RuntimeFactorsBuilder>::Factors>>::CliArgs: RefUnwindSafe,
<B as RuntimeFactorsBuilder>::CliArgs: RefUnwindSafe,
impl<T, B> Send for FactorsTriggerCommand<T, B>where
<T as Trigger<<B as RuntimeFactorsBuilder>::Factors>>::CliArgs: Send,
<B as RuntimeFactorsBuilder>::CliArgs: Send,
impl<T, B> Sync for FactorsTriggerCommand<T, B>where
<T as Trigger<<B as RuntimeFactorsBuilder>::Factors>>::CliArgs: Sync,
<B as RuntimeFactorsBuilder>::CliArgs: Sync,
impl<T, B> Unpin for FactorsTriggerCommand<T, B>where
<T as Trigger<<B as RuntimeFactorsBuilder>::Factors>>::CliArgs: Unpin,
<B as RuntimeFactorsBuilder>::CliArgs: Unpin,
impl<T, B> UnwindSafe for FactorsTriggerCommand<T, B>where
<T as Trigger<<B as RuntimeFactorsBuilder>::Factors>>::CliArgs: UnwindSafe,
<B as RuntimeFactorsBuilder>::CliArgs: UnwindSafe,
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
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
Source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self
file descriptor.Source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
Source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self
file descriptor. Read moreSource§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 moreSource§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