Struct vrp_pragmatic::format::MultiFormatError
source · pub struct MultiFormatError {
pub errors: Vec<FormatError>,
}Expand description
Keeps track of multiple FormatError.
Fields§
§errors: Vec<FormatError>Inner errors.
Implementations§
Trait Implementations§
source§impl Debug for MultiFormatError
impl Debug for MultiFormatError
source§impl Display for MultiFormatError
impl Display for MultiFormatError
source§impl Error for MultiFormatError
impl Error for MultiFormatError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<MultiFormatError> for GenericError
impl From<MultiFormatError> for GenericError
source§fn from(value: MultiFormatError) -> Self
fn from(value: MultiFormatError) -> Self
Converts to this type from the input type.
source§impl From<Vec<FormatError>> for MultiFormatError
impl From<Vec<FormatError>> for MultiFormatError
source§fn from(errors: Vec<FormatError>) -> Self
fn from(errors: Vec<FormatError>) -> Self
Converts to this type from the input type.
source§impl IntoIterator for MultiFormatError
impl IntoIterator for MultiFormatError
§type Item = FormatError
type Item = FormatError
The type of the elements being iterated over.
§type IntoIter = <Vec<FormatError> as IntoIterator>::IntoIter
type IntoIter = <Vec<FormatError> as IntoIterator>::IntoIter
Which kind of iterator are we turning this into?
Auto Trait Implementations§
impl RefUnwindSafe for MultiFormatError
impl Send for MultiFormatError
impl Sync for MultiFormatError
impl Unpin for MultiFormatError
impl UnwindSafe for MultiFormatError
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