pub enum EnvelopeDecodeError {
UnknownTag(String),
InvalidPayload(String),
UnexpectedPayload(String),
}Variants§
Trait Implementations§
Source§impl Clone for EnvelopeDecodeError
impl Clone for EnvelopeDecodeError
Source§fn clone(&self) -> EnvelopeDecodeError
fn clone(&self) -> EnvelopeDecodeError
Returns a duplicate 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 Debug for EnvelopeDecodeError
impl Debug for EnvelopeDecodeError
Source§impl PartialEq for EnvelopeDecodeError
impl PartialEq for EnvelopeDecodeError
impl Eq for EnvelopeDecodeError
impl StructuralPartialEq for EnvelopeDecodeError
Auto Trait Implementations§
impl Freeze for EnvelopeDecodeError
impl RefUnwindSafe for EnvelopeDecodeError
impl Send for EnvelopeDecodeError
impl Sync for EnvelopeDecodeError
impl Unpin for EnvelopeDecodeError
impl UnsafeUnpin for EnvelopeDecodeError
impl UnwindSafe for EnvelopeDecodeError
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