pub struct BatchIndexAndErrorMessage {
pub batch_index: i32,
pub batch_index_error_message: Option<String>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§batch_index: i32
The batch index of the record that cause the batch to be dropped.
batch_index_error_message: Option<String>
The error message of the record that caused the batch to be dropped.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
source§impl Clone for BatchIndexAndErrorMessage
impl Clone for BatchIndexAndErrorMessage
source§fn clone(&self) -> BatchIndexAndErrorMessage
fn clone(&self) -> BatchIndexAndErrorMessage
Returns a copy 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 Debug for BatchIndexAndErrorMessage
impl Debug for BatchIndexAndErrorMessage
source§impl Default for BatchIndexAndErrorMessage
impl Default for BatchIndexAndErrorMessage
source§fn default() -> BatchIndexAndErrorMessage
fn default() -> BatchIndexAndErrorMessage
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for BatchIndexAndErrorMessage
impl Send for BatchIndexAndErrorMessage
impl Sync for BatchIndexAndErrorMessage
impl Unpin for BatchIndexAndErrorMessage
impl UnwindSafe for BatchIndexAndErrorMessage
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