pub enum SchemaSourceError {
NotFound {
schema_ref: String,
candidates: Vec<PathBuf>,
},
Io {
path: PathBuf,
source: Error,
},
CacheCollision {
name: String,
version: String,
first: PathBuf,
second: PathBuf,
},
VersionMismatch {
path: PathBuf,
expected: String,
found: String,
},
MalformedManifest {
path: PathBuf,
reason: String,
},
}Variants§
NotFound
Fields
Io
CacheCollision
Two distinct on-disk schema directories share the same
<name>-<version> cache key. Indicates a bug in the cache
extraction pipeline — silent overwrite would mask the issue.
VersionMismatch
MalformedManifest
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