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)>
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()