pub enum CascadeOpsError {
CanisterNotFound(Principal),
InvalidParentChain,
ParentChainMissingSelf(Principal),
ParentChainCycle(Principal),
ParentChainTooLong(usize),
ParentChainNotRootTerminated(Principal),
NextHopNotFound(Principal),
}Expand description
CascadeOpsError Errors raised during synchronization
Variants§
CanisterNotFound(Principal)
InvalidParentChain
ParentChainMissingSelf(Principal)
ParentChainCycle(Principal)
ParentChainTooLong(usize)
ParentChainNotRootTerminated(Principal)
NextHopNotFound(Principal)
Trait Implementations§
Source§impl Debug for CascadeOpsError
impl Debug for CascadeOpsError
Source§impl Display for CascadeOpsError
impl Display for CascadeOpsError
Source§impl Error for CascadeOpsError
impl Error for CascadeOpsError
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 From<CascadeOpsError> for Error
impl From<CascadeOpsError> for Error
Source§fn from(err: CascadeOpsError) -> Self
fn from(err: CascadeOpsError) -> Self
Converts to this type from the input type.
Source§impl From<CascadeOpsError> for OrchestrationOpsError
impl From<CascadeOpsError> for OrchestrationOpsError
Source§fn from(source: CascadeOpsError) -> Self
fn from(source: CascadeOpsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CascadeOpsError
impl RefUnwindSafe for CascadeOpsError
impl Send for CascadeOpsError
impl Sync for CascadeOpsError
impl Unpin for CascadeOpsError
impl UnwindSafe for CascadeOpsError
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