pub enum Error {
Unstructured(Vec<Cow<'static, str>>),
Structured(BTreeMap<Location, Error>),
}
Expand description
A type that represents all validation issues that arise during the validation of the given data type.
Variants§
Unstructured(Vec<Cow<'static, str>>)
A flat, unstructured list of failure reasons
Structured(BTreeMap<Location, Error>)
A structured, potentially nested set of failure reasons
a vector or a nested map can attribute errors to the correct locations
Implementations§
Source§impl Error
impl Error
Sourcepub fn new<S>(message: S) -> Self
pub fn new<S>(message: S) -> Self
Constructs a new unstructured Error
with a single message
let e = Error::new("the universe divided by 0");
Sourcepub fn merge(&mut self, other: Error)
pub fn merge(&mut self, other: Error)
Merge 2 existing Error
types
let mut e1 = Error::new("the universe divided by 0");
let e2 = Error::new("an unstoppable force collided with an improvable object");
e1.merge(e2);
Sourcepub fn build() -> ErrorBuilder
pub fn build() -> ErrorBuilder
create a new ErrorBuilder
instance
Trait Implementations§
Source§impl Error for Error
impl Error for Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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