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<JsonParseError> for BatchErrorProcessingError
impl From<JsonParseError> for BatchErrorProcessingError
Source§fn from(x: JsonParseError) -> Self
fn from(x: JsonParseError) -> Self
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