pub enum SchemaSourceError {
NotFound {
schema_ref: String,
candidates: Vec<PathBuf>,
},
Io {
path: PathBuf,
source: Error,
},
VersionMismatch {
path: PathBuf,
expected: String,
found: String,
},
MalformedManifest {
path: PathBuf,
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for SchemaSourceError
impl Debug for SchemaSourceError
Source§impl Display for SchemaSourceError
impl Display for SchemaSourceError
Source§impl Error for SchemaSourceError
impl Error for SchemaSourceError
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 !RefUnwindSafe for SchemaSourceError
impl !UnwindSafe for SchemaSourceError
impl Freeze for SchemaSourceError
impl Send for SchemaSourceError
impl Sync for SchemaSourceError
impl Unpin for SchemaSourceError
impl UnsafeUnpin for SchemaSourceError
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