Enum sentry_core::protocol::EnvelopeError
source · pub enum EnvelopeError {
UnexpectedEof,
MissingHeader,
MissingItemHeader,
MissingNewline,
InvalidHeader(Error),
InvalidItemHeader(Error),
InvalidItemPayload(Error),
}
Expand description
Raised if a envelope cannot be parsed from a given input.
Variants§
UnexpectedEof
Unexpected end of file
MissingHeader
Missing envelope header
MissingItemHeader
Missing item header
MissingNewline
Missing newline after header or payload
InvalidHeader(Error)
Invalid envelope header
InvalidItemHeader(Error)
Invalid item header
InvalidItemPayload(Error)
Invalid item payload
Trait Implementations§
source§impl Debug for EnvelopeError
impl Debug for EnvelopeError
source§impl Display for EnvelopeError
impl Display for EnvelopeError
source§impl Error for EnvelopeError
impl Error for EnvelopeError
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()
Auto Trait Implementations§
impl Freeze for EnvelopeError
impl !RefUnwindSafe for EnvelopeError
impl Send for EnvelopeError
impl Sync for EnvelopeError
impl Unpin for EnvelopeError
impl !UnwindSafe for EnvelopeError
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