pub enum ExecutorError {
Node(NodeDeclError),
SpinFailed,
}Expand description
Errors returned by the runtime entry points.
Variants§
Node(NodeDeclError)
One of the components’ register / lifecycle calls failed.
SpinFailed
The executor’s spin loop returned an unexpected error.
Trait Implementations§
Source§impl Clone for ExecutorError
impl Clone for ExecutorError
Source§fn clone(&self) -> ExecutorError
fn clone(&self) -> ExecutorError
Returns a duplicate 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 ExecutorError
impl Debug for ExecutorError
Source§impl From<NodeDeclError> for ExecutorError
impl From<NodeDeclError> for ExecutorError
Source§fn from(e: NodeDeclError) -> Self
fn from(e: NodeDeclError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExecutorError
impl PartialEq for ExecutorError
impl Eq for ExecutorError
impl StructuralPartialEq for ExecutorError
Auto Trait Implementations§
impl Freeze for ExecutorError
impl RefUnwindSafe for ExecutorError
impl Send for ExecutorError
impl Sync for ExecutorError
impl Unpin for ExecutorError
impl UnsafeUnpin for ExecutorError
impl UnwindSafe for ExecutorError
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