pub enum ReceivePrekeyOpError {
IncorrectSigner,
VerificationError(VerificationError),
}Variants§
IncorrectSigner
VerificationError(VerificationError)
Trait Implementations§
Source§impl Debug for ReceivePrekeyOpError
impl Debug for ReceivePrekeyOpError
Source§impl Display for ReceivePrekeyOpError
impl Display for ReceivePrekeyOpError
Source§impl Error for ReceivePrekeyOpError
impl Error for ReceivePrekeyOpError
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<S: AsyncSigner, T: ContentRef, L: MembershipListener<S, T>> From<ReceivePrekeyOpError> for ReceiveEventError<S, T, L>
impl<S: AsyncSigner, T: ContentRef, L: MembershipListener<S, T>> From<ReceivePrekeyOpError> for ReceiveEventError<S, T, L>
Source§fn from(source: ReceivePrekeyOpError) -> Self
fn from(source: ReceivePrekeyOpError) -> Self
Converts to this type from the input type.
Source§impl<S: AsyncSigner, T: ContentRef, L: MembershipListener<S, T>> From<ReceivePrekeyOpError> for ReceiveStaticEventError<S, T, L>
impl<S: AsyncSigner, T: ContentRef, L: MembershipListener<S, T>> From<ReceivePrekeyOpError> for ReceiveStaticEventError<S, T, L>
Source§fn from(source: ReceivePrekeyOpError) -> Self
fn from(source: ReceivePrekeyOpError) -> Self
Converts to this type from the input type.
Source§impl From<VerificationError> for ReceivePrekeyOpError
impl From<VerificationError> for ReceivePrekeyOpError
Source§fn from(source: VerificationError) -> Self
fn from(source: VerificationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReceivePrekeyOpError
impl !RefUnwindSafe for ReceivePrekeyOpError
impl Send for ReceivePrekeyOpError
impl Sync for ReceivePrekeyOpError
impl Unpin for ReceivePrekeyOpError
impl UnsafeUnpin for ReceivePrekeyOpError
impl !UnwindSafe for ReceivePrekeyOpError
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