pub enum ReplicatedRunnerError {
InvalidPlan {
detail: String,
},
LaneStartup {
lane: String,
detail: String,
},
MissingCrossLaneRequestTransfer {
capability: String,
},
LaneUnavailable {
lane: String,
},
LanePanicked {
lane: String,
},
LaneShutdown {
lane: String,
outcome: ShutdownOutcome,
},
}Expand description
A native Runner startup or lane-lifecycle failure.
Variants§
InvalidPlan
The immutable Plan failed validation before any lane started.
LaneStartup
One lane could not construct or start its Kernel replica.
MissingCrossLaneRequestTransfer
A generated request Capability was not registered with the native transfer catalog.
A lane stopped accepting Runner commands unexpectedly.
LanePanicked
A lane thread panicked while stopping.
LaneShutdown
One Kernel replica did not stop cleanly.
Trait Implementations§
Source§impl Clone for ReplicatedRunnerError
impl Clone for ReplicatedRunnerError
Source§fn clone(&self) -> ReplicatedRunnerError
fn clone(&self) -> ReplicatedRunnerError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReplicatedRunnerError
impl Debug for ReplicatedRunnerError
Source§impl Display for ReplicatedRunnerError
impl Display for ReplicatedRunnerError
impl Eq for ReplicatedRunnerError
Source§impl Error for ReplicatedRunnerError
impl Error for ReplicatedRunnerError
1.30.0 · 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 PartialEq for ReplicatedRunnerError
impl PartialEq for ReplicatedRunnerError
impl StructuralPartialEq for ReplicatedRunnerError
Auto Trait Implementations§
impl Freeze for ReplicatedRunnerError
impl RefUnwindSafe for ReplicatedRunnerError
impl Send for ReplicatedRunnerError
impl Sync for ReplicatedRunnerError
impl Unpin for ReplicatedRunnerError
impl UnsafeUnpin for ReplicatedRunnerError
impl UnwindSafe for ReplicatedRunnerError
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