pub enum DispatchError {
UnknownType,
ParseError(String),
Validation(Box<ValidationError>),
}Expand description
Internal error type for dispatch operations
Variants§
UnknownType
Type name not found in registry
ParseError(String)
JSON parsing failed
Validation(Box<ValidationError>)
Validation failed (boxed to reduce enum size)
Auto Trait Implementations§
impl Freeze for DispatchError
impl RefUnwindSafe for DispatchError
impl Send for DispatchError
impl Sync for DispatchError
impl Unpin for DispatchError
impl UnwindSafe for DispatchError
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