pub enum TypeValidationError {
TypeMismatch {
expected: String,
got: String,
},
MissingField {
record: String,
field: String,
},
ExtraField {
record: String,
field: String,
},
UnknownCase {
variant: String,
case: String,
},
UnresolvedRef {
path: String,
},
WrongArity {
expected: usize,
got: usize,
},
Nested {
context: String,
inner: Box<TypeValidationError>,
},
}Expand description
Errors from validating a Value against a type space.
Variants§
TypeMismatch
Value’s runtime type doesn’t match the expected type.
MissingField
Record is missing a required field.
ExtraField
Record has a field not declared in the type.
UnknownCase
Variant case name not found in the type definition.
UnresolvedRef
Type::Ref could not be resolved to a TypeDef.
WrongArity
Tuple or payload length mismatch.
Nested
Error in a nested position, with context path.
Trait Implementations§
Source§impl Clone for TypeValidationError
impl Clone for TypeValidationError
Source§fn clone(&self) -> TypeValidationError
fn clone(&self) -> TypeValidationError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TypeValidationError
impl Debug for TypeValidationError
Source§impl Display for TypeValidationError
impl Display for TypeValidationError
Source§impl Error for TypeValidationError
impl Error for TypeValidationError
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()
Auto Trait Implementations§
impl Freeze for TypeValidationError
impl RefUnwindSafe for TypeValidationError
impl Send for TypeValidationError
impl Sync for TypeValidationError
impl Unpin for TypeValidationError
impl UnsafeUnpin for TypeValidationError
impl UnwindSafe for TypeValidationError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoAnyhow for T
impl<T> IntoAnyhow for T
Source§fn into_anyhow(self) -> Error
fn into_anyhow(self) -> Error
Converts
self into an anyhow::Error.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more