pub enum McuPlanError {
WrongRealm(ExecutionRealm),
UnsupportedEffect(StepId, Effect),
UnboundedPartialOutput(StepId),
HostResource(StepId),
StatefulPlan,
HierarchicalPlan(StepId),
SizeOverflow,
}Variants§
WrongRealm(ExecutionRealm)
UnsupportedEffect(StepId, Effect)
UnboundedPartialOutput(StepId)
HostResource(StepId)
StatefulPlan
HierarchicalPlan(StepId)
SizeOverflow
Trait Implementations§
Source§impl Clone for McuPlanError
impl Clone for McuPlanError
Source§fn clone(&self) -> McuPlanError
fn clone(&self) -> McuPlanError
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 moreimpl Copy for McuPlanError
Source§impl Debug for McuPlanError
impl Debug for McuPlanError
Source§impl Display for McuPlanError
impl Display for McuPlanError
impl Eq for McuPlanError
Source§impl Error for McuPlanError
Available on crate feature std only.
impl Error for McuPlanError
Available on crate feature
std only.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 McuPlanError
impl PartialEq for McuPlanError
impl StructuralPartialEq for McuPlanError
Auto Trait Implementations§
impl Freeze for McuPlanError
impl RefUnwindSafe for McuPlanError
impl Send for McuPlanError
impl Sync for McuPlanError
impl Unpin for McuPlanError
impl UnsafeUnpin for McuPlanError
impl UnwindSafe for McuPlanError
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