pub enum PartitionedRuntimeConstructionError {
Contract(String),
Architecture(String),
Mechanism(String),
}Expand description
Failure from the reusable rank-local preparation lifecycle.
Variants§
Contract(String)
Architecture, selection, task, or partition authority disagreed.
Architecture(String)
Architecture unit construction failed.
Mechanism(String)
The concrete mechanism rejected materialization, state, or policy work.
Trait Implementations§
Source§impl Error for PartitionedRuntimeConstructionError
impl Error for PartitionedRuntimeConstructionError
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()
Auto Trait Implementations§
impl Freeze for PartitionedRuntimeConstructionError
impl RefUnwindSafe for PartitionedRuntimeConstructionError
impl Send for PartitionedRuntimeConstructionError
impl Sync for PartitionedRuntimeConstructionError
impl Unpin for PartitionedRuntimeConstructionError
impl UnsafeUnpin for PartitionedRuntimeConstructionError
impl UnwindSafe for PartitionedRuntimeConstructionError
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