pub struct BatchErrorsData {
pub code: Option<String>,
pub line: Option<i32>,
pub message: Option<String>,
pub param: Option<String>,
}
Fields§
§code: Option<String>
An error code identifying the error type.
line: Option<i32>
The line number of the input file where the error occurred, if applicable.
message: Option<String>
A human-readable message providing more details about the error.
param: Option<String>
The name of the parameter that caused the error, if applicable.
Trait Implementations§
Source§impl Debug for BatchErrorsData
impl Debug for BatchErrorsData
Source§impl<'de> Deserialize<'de> for BatchErrorsData
impl<'de> Deserialize<'de> for BatchErrorsData
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
Auto Trait Implementations§
impl Freeze for BatchErrorsData
impl RefUnwindSafe for BatchErrorsData
impl Send for BatchErrorsData
impl Sync for BatchErrorsData
impl Unpin for BatchErrorsData
impl UnwindSafe for BatchErrorsData
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