pub enum IntegrityDeepError {
Internal(InternalError),
Job(IntegrityJobError),
}Expand description
Deep protocol failures keep persisted-protocol and engine causes distinct.
Variants§
Internal(InternalError)
Accepted authority or physical execution failed.
Job(IntegrityJobError)
Stable job/progress protocol rejected the request.
Trait Implementations§
Source§impl Debug for IntegrityDeepError
impl Debug for IntegrityDeepError
Source§impl From<IntegrityJobError> for IntegrityDeepError
impl From<IntegrityJobError> for IntegrityDeepError
Source§fn from(error: IntegrityJobError) -> Self
fn from(error: IntegrityJobError) -> Self
Converts to this type from the input type.
Source§impl From<InternalError> for IntegrityDeepError
impl From<InternalError> for IntegrityDeepError
Source§fn from(error: InternalError) -> Self
fn from(error: InternalError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IntegrityDeepError
impl RefUnwindSafe for IntegrityDeepError
impl Send for IntegrityDeepError
impl Sync for IntegrityDeepError
impl Unpin for IntegrityDeepError
impl UnsafeUnpin for IntegrityDeepError
impl UnwindSafe for IntegrityDeepError
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