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 Freeze for BatchIndexAndErrorMessage
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