pub enum StartActionError {
InstanceShutDown {
moniker: Moniker,
},
InstanceDestroyed {
moniker: Moniker,
},
ResolveActionError {
moniker: Moniker,
err: Box<ActionError>,
},
ResolveRunnerError {
moniker: Moniker,
runner: Name,
err: Box<RouterError>,
},
RebootOnTerminateForbidden {
moniker: Moniker,
err: PolicyError,
},
InputDictionaryError {
moniker: Moniker,
},
CreateNamespaceError {
moniker: Moniker,
err: CreateNamespaceError,
},
StartProgramError {
moniker: Moniker,
err: StartError,
},
StructuredConfigError {
moniker: Moniker,
err: StructuredConfigError,
},
EagerStartError {
moniker: Moniker,
err: Box<ActionError>,
},
Aborted {
moniker: Moniker,
},
}
Variants§
InstanceShutDown
Fields
§
moniker: Moniker
InstanceDestroyed
Fields
§
moniker: Moniker
ResolveActionError
ResolveRunnerError
RebootOnTerminateForbidden
InputDictionaryError
Fields
§
moniker: Moniker
CreateNamespaceError
StartProgramError
StructuredConfigError
EagerStartError
Aborted
Fields
§
moniker: Moniker
Trait Implementations§
Source§impl Clone for StartActionError
impl Clone for StartActionError
Source§fn clone(&self) -> StartActionError
fn clone(&self) -> StartActionError
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 StartActionError
impl Debug for StartActionError
Source§impl Display for StartActionError
impl Display for StartActionError
Source§impl Error for StartActionError
impl Error for StartActionError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<StartActionError> for ActionError
impl From<StartActionError> for ActionError
Source§fn from(source: StartActionError) -> Self
fn from(source: StartActionError) -> Self
Converts to this type from the input type.
Source§impl From<StartActionError> for ModelError
impl From<StartActionError> for ModelError
Source§fn from(source: StartActionError) -> Self
fn from(source: StartActionError) -> Self
Converts to this type from the input type.
Source§impl Into<Error> for StartActionError
impl Into<Error> for StartActionError
Source§impl Into<StartError> for StartActionError
impl Into<StartError> for StartActionError
Source§fn into(self) -> StartError
fn into(self) -> StartError
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for StartActionError
impl !RefUnwindSafe for StartActionError
impl Send for StartActionError
impl Sync for StartActionError
impl Unpin for StartActionError
impl !UnwindSafe for StartActionError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)