pub struct DecodeFailure {
pub raw: Value,
pub error: String,
}Expand description
A stored payload that could not be decoded into the consumer’s event type (e.g. a variant the consumer’s enum does not know yet, or a row written by a different event enum sharing the table).
Carried inside UndecodableEventError, which is how such an event
travels everywhere: the Err arm of the
MailboxTables load results, of the internal
delivery plumbing, and of the listener streams.
Fields§
§raw: ValueThe payload column exactly as stored.
error: StringThe serde error message.
Trait Implementations§
Source§impl Clone for DecodeFailure
impl Clone for DecodeFailure
Source§fn clone(&self) -> DecodeFailure
fn clone(&self) -> DecodeFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DecodeFailure
impl Debug for DecodeFailure
Source§impl<'de> Deserialize<'de> for DecodeFailure
impl<'de> Deserialize<'de> for DecodeFailure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DecodeFailure
impl PartialEq for DecodeFailure
Source§impl Serialize for DecodeFailure
impl Serialize for DecodeFailure
impl StructuralPartialEq for DecodeFailure
Auto Trait Implementations§
impl Freeze for DecodeFailure
impl RefUnwindSafe for DecodeFailure
impl Send for DecodeFailure
impl Sync for DecodeFailure
impl Unpin for DecodeFailure
impl UnsafeUnpin for DecodeFailure
impl UnwindSafe for DecodeFailure
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
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 more