#[non_exhaustive]pub enum EventStreamParseError {
FrameTooShort(u32),
PreludeCrcMismatch {
computed: u32,
expected: u32,
},
MessageCrcMismatch {
computed: u32,
expected: u32,
},
UnknownHeaderType(u8),
Underrun {
context: &'static str,
},
NonUtf8String(String),
}Available on crate feature
aws only.Expand description
Errors from frame parsing.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FrameTooShort(u32)
total_length field claims a frame size below the protocol
minimum.
PreludeCrcMismatch
CRC over the prelude (first 8 bytes) did not match the stored value.
Fields
MessageCrcMismatch
CRC over the full message did not match the trailing value.
Fields
UnknownHeaderType(u8)
A header value type byte was outside the documented 0..=9
range.
Underrun
A length-prefixed field claimed more bytes than the frame supplied.
Fields
NonUtf8String(String)
A String header could not be decoded as UTF-8.
Trait Implementations§
Source§impl Debug for EventStreamParseError
impl Debug for EventStreamParseError
Source§impl Display for EventStreamParseError
impl Display for EventStreamParseError
Source§impl Error for EventStreamParseError
impl Error for EventStreamParseError
1.30.0 · 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()
Source§impl From<EventStreamParseError> for CloudError
impl From<EventStreamParseError> for CloudError
Source§fn from(source: EventStreamParseError) -> Self
fn from(source: EventStreamParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EventStreamParseError
impl RefUnwindSafe for EventStreamParseError
impl Send for EventStreamParseError
impl Sync for EventStreamParseError
impl Unpin for EventStreamParseError
impl UnsafeUnpin for EventStreamParseError
impl UnwindSafe for EventStreamParseError
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.