pub enum ReceiveError<Crypto, Com> {
CryptoError(Crypto),
CommunicationError(Com),
}
Variants§
Trait Implementations§
Source§impl<Crypto: Clone, Com: Clone> Clone for ReceiveError<Crypto, Com>
impl<Crypto: Clone, Com: Clone> Clone for ReceiveError<Crypto, Com>
Source§fn clone(&self) -> ReceiveError<Crypto, Com>
fn clone(&self) -> ReceiveError<Crypto, Com>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<Crypto, Com> Display for ReceiveError<Crypto, Com>
impl<Crypto, Com> Display for ReceiveError<Crypto, Com>
Source§impl<Crypto, Com> Error for ReceiveError<Crypto, Com>
impl<Crypto, Com> Error for ReceiveError<Crypto, Com>
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<ReceiveError<JsValue, JsValue>> for JsReceiveError
impl From<ReceiveError<JsValue, JsValue>> for JsReceiveError
impl<Crypto: Eq, Com: Eq> Eq for ReceiveError<Crypto, Com>
impl<Crypto, Com> StructuralPartialEq for ReceiveError<Crypto, Com>
Auto Trait Implementations§
impl<Crypto, Com> Freeze for ReceiveError<Crypto, Com>
impl<Crypto, Com> RefUnwindSafe for ReceiveError<Crypto, Com>where
Crypto: RefUnwindSafe,
Com: RefUnwindSafe,
impl<Crypto, Com> Send for ReceiveError<Crypto, Com>
impl<Crypto, Com> Sync for ReceiveError<Crypto, Com>
impl<Crypto, Com> Unpin for ReceiveError<Crypto, Com>
impl<Crypto, Com> UnwindSafe for ReceiveError<Crypto, Com>where
Crypto: UnwindSafe,
Com: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.