pub enum BatchErrorProcessingError {
JsonParseError(JsonParseError),
}Variants§
JsonParseError(JsonParseError)
Trait Implementations§
Source§impl Debug for BatchErrorProcessingError
impl Debug for BatchErrorProcessingError
Source§impl Display for BatchErrorProcessingError
impl Display for BatchErrorProcessingError
Source§impl From<BatchErrorProcessingError> for BatchProcessingError
impl From<BatchErrorProcessingError> for BatchProcessingError
Source§fn from(x: BatchErrorProcessingError) -> BatchProcessingError
fn from(x: BatchErrorProcessingError) -> BatchProcessingError
Converts to this type from the input type.
Source§impl From<BatchErrorProcessingError> for BatchReconciliationError
impl From<BatchErrorProcessingError> for BatchReconciliationError
Source§fn from(x: BatchErrorProcessingError) -> BatchReconciliationError
fn from(x: BatchErrorProcessingError) -> BatchReconciliationError
Converts to this type from the input type.
Source§impl From<JsonParseError> for BatchErrorProcessingError
impl From<JsonParseError> for BatchErrorProcessingError
Source§fn from(x: JsonParseError) -> BatchErrorProcessingError
fn from(x: JsonParseError) -> BatchErrorProcessingError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BatchErrorProcessingError
impl !RefUnwindSafe for BatchErrorProcessingError
impl Send for BatchErrorProcessingError
impl Sync for BatchErrorProcessingError
impl Unpin for BatchErrorProcessingError
impl !UnwindSafe for BatchErrorProcessingError
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