pub struct MessageBusDeadLetterEntry<T = AnyValue> {
pub entry_seq: u64,
pub topic: Option<String>,
pub command: Option<MessageBusCommand<T>>,
pub message: Option<MessageEnvelope<T>>,
pub issue: DataIssue,
pub timestamp_ms: u64,
}Expand description
MessageBusDeadLetterEntry data container.
Fields§
§entry_seq: u64entry_seq field for entry seq.
topic: Option<String>topic field for topic.
command: Option<MessageBusCommand<T>>command field for command.
message: Option<MessageEnvelope<T>>message field for message.
issue: DataIssueissue field for issue.
timestamp_ms: u64timestamp_ms field for timestamp ms.
Trait Implementations§
Source§impl<T: Clone> Clone for MessageBusDeadLetterEntry<T>
impl<T: Clone> Clone for MessageBusDeadLetterEntry<T>
Source§fn clone(&self) -> MessageBusDeadLetterEntry<T>
fn clone(&self) -> MessageBusDeadLetterEntry<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for MessageBusDeadLetterEntry<T>
impl<T: Debug> Debug for MessageBusDeadLetterEntry<T>
Source§impl<T: PartialEq> PartialEq for MessageBusDeadLetterEntry<T>
impl<T: PartialEq> PartialEq for MessageBusDeadLetterEntry<T>
Source§fn eq(&self, other: &MessageBusDeadLetterEntry<T>) -> bool
fn eq(&self, other: &MessageBusDeadLetterEntry<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for MessageBusDeadLetterEntry<T>
Auto Trait Implementations§
impl<T> Freeze for MessageBusDeadLetterEntry<T>where
T: Freeze,
impl<T> RefUnwindSafe for MessageBusDeadLetterEntry<T>where
T: RefUnwindSafe,
impl<T> Send for MessageBusDeadLetterEntry<T>where
T: Send,
impl<T> Sync for MessageBusDeadLetterEntry<T>where
T: Sync,
impl<T> Unpin for MessageBusDeadLetterEntry<T>where
T: Unpin,
impl<T> UnsafeUnpin for MessageBusDeadLetterEntry<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for MessageBusDeadLetterEntry<T>where
T: UnwindSafe,
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