pub enum TestAckedGroupError<ID, OP> {
UnrecognizedMember(ID),
AlreadyAcked,
AckingOwnRemoval,
UnknownMessage(OP),
}Available on (crate features
message_scheme) and (crate features test_utils) only.Variants§
Trait Implementations§
Source§impl<ID, OP> Display for TestAckedGroupError<ID, OP>
impl<ID, OP> Display for TestAckedGroupError<ID, OP>
Source§impl<ID, OP> Error for TestAckedGroupError<ID, OP>
impl<ID, OP> Error for TestAckedGroupError<ID, 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()
Auto Trait Implementations§
impl<ID, OP> Freeze for TestAckedGroupError<ID, OP>
impl<ID, OP> RefUnwindSafe for TestAckedGroupError<ID, OP>where
ID: RefUnwindSafe,
OP: RefUnwindSafe,
impl<ID, OP> Send for TestAckedGroupError<ID, OP>
impl<ID, OP> Sync for TestAckedGroupError<ID, OP>
impl<ID, OP> Unpin for TestAckedGroupError<ID, OP>
impl<ID, OP> UnsafeUnpin for TestAckedGroupError<ID, OP>where
ID: UnsafeUnpin,
OP: UnsafeUnpin,
impl<ID, OP> UnwindSafe for TestAckedGroupError<ID, OP>where
ID: UnwindSafe,
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