pub enum EnvelopeBatchDecodeError {
InvalidJson,
BatchTooLarge {
actual: usize,
limit: usize,
},
InvalidRoutingMetadata,
}Variants§
Trait Implementations§
Source§impl Clone for EnvelopeBatchDecodeError
impl Clone for EnvelopeBatchDecodeError
Source§fn clone(&self) -> EnvelopeBatchDecodeError
fn clone(&self) -> EnvelopeBatchDecodeError
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 EnvelopeBatchDecodeError
impl Debug for EnvelopeBatchDecodeError
Source§impl PartialEq for EnvelopeBatchDecodeError
impl PartialEq for EnvelopeBatchDecodeError
impl Copy for EnvelopeBatchDecodeError
impl Eq for EnvelopeBatchDecodeError
impl StructuralPartialEq for EnvelopeBatchDecodeError
Auto Trait Implementations§
impl Freeze for EnvelopeBatchDecodeError
impl RefUnwindSafe for EnvelopeBatchDecodeError
impl Send for EnvelopeBatchDecodeError
impl Sync for EnvelopeBatchDecodeError
impl Unpin for EnvelopeBatchDecodeError
impl UnsafeUnpin for EnvelopeBatchDecodeError
impl UnwindSafe for EnvelopeBatchDecodeError
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