pub struct PipelineDeadLetter {
pub run_id: String,
pub pipeline_id: String,
pub stage: PipelineStage,
pub reason: String,
pub record: Row,
pub checkpoint: Option<String>,
pub attempt: u32,
pub timestamp_unix_ms: u64,
}Fields§
§run_id: String§pipeline_id: String§stage: PipelineStage§reason: String§record: Row§checkpoint: Option<String>§attempt: u32§timestamp_unix_ms: u64Trait Implementations§
Source§impl Clone for PipelineDeadLetter
impl Clone for PipelineDeadLetter
Source§fn clone(&self) -> PipelineDeadLetter
fn clone(&self) -> PipelineDeadLetter
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 PipelineDeadLetter
impl Debug for PipelineDeadLetter
Source§impl<'de> Deserialize<'de> for PipelineDeadLetter
impl<'de> Deserialize<'de> for PipelineDeadLetter
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 PipelineDeadLetter
impl PartialEq for PipelineDeadLetter
Source§fn eq(&self, other: &PipelineDeadLetter) -> bool
fn eq(&self, other: &PipelineDeadLetter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PipelineDeadLetter
impl Serialize for PipelineDeadLetter
impl StructuralPartialEq for PipelineDeadLetter
Auto Trait Implementations§
impl Freeze for PipelineDeadLetter
impl RefUnwindSafe for PipelineDeadLetter
impl Send for PipelineDeadLetter
impl Sync for PipelineDeadLetter
impl Unpin for PipelineDeadLetter
impl UnsafeUnpin for PipelineDeadLetter
impl UnwindSafe for PipelineDeadLetter
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