pub enum ExpectedEnvelopeError {
Truncated,
BadMagic,
VersionMismatch,
SectionTooLarge,
}Expand description
Variant tags for assert_envelope_error_kind. Mirrors
EnvelopeError but is decoupled from the consumer’s wrapper
enum so they can match on it without re-exporting the
variants.
Variants§
Truncated
EnvelopeError::Truncated
BadMagic
EnvelopeError::BadMagic
VersionMismatch
EnvelopeError::VersionMismatch
SectionTooLarge
EnvelopeError::SectionTooLarge
Trait Implementations§
Source§impl Clone for ExpectedEnvelopeError
impl Clone for ExpectedEnvelopeError
Source§fn clone(&self) -> ExpectedEnvelopeError
fn clone(&self) -> ExpectedEnvelopeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExpectedEnvelopeError
Source§impl Debug for ExpectedEnvelopeError
impl Debug for ExpectedEnvelopeError
impl Eq for ExpectedEnvelopeError
Source§impl PartialEq for ExpectedEnvelopeError
impl PartialEq for ExpectedEnvelopeError
impl StructuralPartialEq for ExpectedEnvelopeError
Auto Trait Implementations§
impl Freeze for ExpectedEnvelopeError
impl RefUnwindSafe for ExpectedEnvelopeError
impl Send for ExpectedEnvelopeError
impl Sync for ExpectedEnvelopeError
impl Unpin for ExpectedEnvelopeError
impl UnsafeUnpin for ExpectedEnvelopeError
impl UnwindSafe for ExpectedEnvelopeError
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.