pub enum GroupCrdtInnerError<OP> {
StatesNotFound(Vec<OP>),
}Expand description
Inner error types for GroupCrdt.
Variants§
Trait Implementations§
Source§impl<OP: Debug> Debug for GroupCrdtInnerError<OP>
impl<OP: Debug> Debug for GroupCrdtInnerError<OP>
Source§impl<OP> Display for GroupCrdtInnerError<OP>
impl<OP> Display for GroupCrdtInnerError<OP>
Source§impl<OP> Error for GroupCrdtInnerError<OP>
impl<OP> Error for GroupCrdtInnerError<OP>
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<ID, OP, C, RS, ORD> From<GroupCrdtInnerError<OP>> for GroupCrdtError<ID, OP, C, RS, ORD>where
ID: IdentityHandle,
OP: OperationId + Ord,
RS: Resolver<ID, OP, C, ORD::Operation>,
ORD: Orderer<ID, OP, GroupControlMessage<ID, C>> + Debug,
impl<ID, OP, C, RS, ORD> From<GroupCrdtInnerError<OP>> for GroupCrdtError<ID, OP, C, RS, ORD>where
ID: IdentityHandle,
OP: OperationId + Ord,
RS: Resolver<ID, OP, C, ORD::Operation>,
ORD: Orderer<ID, OP, GroupControlMessage<ID, C>> + Debug,
Source§fn from(source: GroupCrdtInnerError<OP>) -> Self
fn from(source: GroupCrdtInnerError<OP>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<OP> Freeze for GroupCrdtInnerError<OP>
impl<OP> RefUnwindSafe for GroupCrdtInnerError<OP>where
OP: RefUnwindSafe,
impl<OP> Send for GroupCrdtInnerError<OP>where
OP: Send,
impl<OP> Sync for GroupCrdtInnerError<OP>where
OP: Sync,
impl<OP> Unpin for GroupCrdtInnerError<OP>where
OP: Unpin,
impl<OP> UnwindSafe for GroupCrdtInnerError<OP>where
OP: UnwindSafe,
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