Enum aws_smithy_http::event_stream::RawMessage
source · [−]Expand description
Raw message from a Receiver when a SdkError::ResponseError is returned.
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.
Decoded(Message)
Message was decoded into a valid frame, but failed to unmarshall into a modeled type.
Invalid(Option<Bytes>)
Message failed to be decoded into a valid frame. The raw bytes may not be available in the case where decoding consumed the buffer.
Trait Implementations
sourceimpl Debug for RawMessage
impl Debug for RawMessage
sourceimpl From<&mut SegmentedBuf<Bytes>> for RawMessage
impl From<&mut SegmentedBuf<Bytes>> for RawMessage
sourcefn from(buf: &mut SegmentedBuf<Bytes>) -> Self
fn from(buf: &mut SegmentedBuf<Bytes>) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for RawMessage
impl Send for RawMessage
impl Sync for RawMessage
impl Unpin for RawMessage
impl UnwindSafe for RawMessage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more