pub enum ActionError {
DiscoverError {
err: DiscoverActionError,
},
ResolveError {
err: ResolveActionError,
},
UnresolveError {
err: UnresolveActionError,
},
StartError {
err: StartActionError,
},
StopError {
err: StopActionError,
},
DestroyError {
err: DestroyActionError,
},
}
Variants§
DiscoverError
Fields
§
err: DiscoverActionError
ResolveError
Fields
§
err: ResolveActionError
UnresolveError
Fields
StartError
Fields
§
err: StartActionError
StopError
Fields
§
err: StopActionError
DestroyError
Fields
§
err: DestroyActionError
Trait Implementations§
Source§impl Clone for ActionError
impl Clone for ActionError
Source§fn clone(&self) -> ActionError
fn clone(&self) -> ActionError
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 ActionError
impl Debug for ActionError
Source§impl Display for ActionError
impl Display for ActionError
Source§impl Error for ActionError
impl Error for ActionError
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 Explain for ActionError
impl Explain for ActionError
fn as_zx_status(&self) -> Status
Source§impl From<ActionError> for AddDynamicChildError
impl From<ActionError> for AddDynamicChildError
Source§fn from(source: ActionError) -> Self
fn from(source: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for ComponentProviderError
impl From<ActionError> for ComponentProviderError
Source§fn from(source: ActionError) -> Self
fn from(source: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for DestroyError
impl From<ActionError> for DestroyError
Source§fn from(err: ActionError) -> Self
fn from(err: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for Error
impl From<ActionError> for Error
Source§fn from(err: ActionError) -> Self
fn from(err: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for ModelError
impl From<ActionError> for ModelError
Source§fn from(source: ActionError) -> Self
fn from(source: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for ResolveError
impl From<ActionError> for ResolveError
Source§fn from(err: ActionError) -> Self
fn from(err: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for RouterError
impl From<ActionError> for RouterError
Source§fn from(value: ActionError) -> Self
fn from(value: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for StartError
impl From<ActionError> for StartError
Source§fn from(err: ActionError) -> Self
fn from(err: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for StopError
impl From<ActionError> for StopError
Source§fn from(err: ActionError) -> Self
fn from(err: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<ActionError> for UnresolveError
impl From<ActionError> for UnresolveError
Source§fn from(err: ActionError) -> Self
fn from(err: ActionError) -> Self
Converts to this type from the input type.
Source§impl From<DestroyActionError> for ActionError
impl From<DestroyActionError> for ActionError
Source§fn from(source: DestroyActionError) -> Self
fn from(source: DestroyActionError) -> Self
Converts to this type from the input type.
Source§impl From<DiscoverActionError> for ActionError
impl From<DiscoverActionError> for ActionError
Source§fn from(source: DiscoverActionError) -> Self
fn from(source: DiscoverActionError) -> Self
Converts to this type from the input type.
Source§impl From<ResolveActionError> for ActionError
impl From<ResolveActionError> for ActionError
Source§fn from(source: ResolveActionError) -> Self
fn from(source: ResolveActionError) -> Self
Converts to this type from the input type.
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<StopActionError> for ActionError
impl From<StopActionError> for ActionError
Source§fn from(source: StopActionError) -> Self
fn from(source: StopActionError) -> Self
Converts to this type from the input type.
Source§impl From<UnresolveActionError> for ActionError
impl From<UnresolveActionError> for ActionError
Source§fn from(source: UnresolveActionError) -> Self
fn from(source: UnresolveActionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActionError
impl !RefUnwindSafe for ActionError
impl Send for ActionError
impl Sync for ActionError
impl Unpin for ActionError
impl !UnwindSafe for ActionError
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
)