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) -> SchemaLinkerError
fn from(err: SchemaDefParserError) -> SchemaLinkerError
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) -> SchemaDefParserError
fn from(validation_error: SchemaDefValidationError) -> SchemaDefParserError
Converts to this type from the input type.
Auto Trait Implementations§
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