pub enum SchemaDefParserError {
Str(&'static str),
String(String),
ValidationError(SchemaDefValidationError),
}Variants§
Trait Implementations§
Source§impl Debug for SchemaDefParserError
impl Debug for SchemaDefParserError
Source§impl From<SchemaDefParserError> for SchemaLinkerError
impl From<SchemaDefParserError> for SchemaLinkerError
Source§fn from(err: SchemaDefParserError) -> Self
fn from(err: SchemaDefParserError) -> Self
Converts to this type from the input type.
Source§impl From<SchemaDefValidationError> for SchemaDefParserError
impl From<SchemaDefValidationError> for SchemaDefParserError
Source§fn from(validation_error: SchemaDefValidationError) -> Self
fn from(validation_error: SchemaDefValidationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SchemaDefParserError
impl RefUnwindSafe for SchemaDefParserError
impl Send for SchemaDefParserError
impl Sync for SchemaDefParserError
impl Unpin for SchemaDefParserError
impl UnwindSafe for SchemaDefParserError
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