pub struct SchemaLoadError {
pub file_path: Option<PathBuf>,
pub error_type: LoadErrorType,
pub message: String,
}Expand description
Error encountered during schema loading
Fields§
§file_path: Option<PathBuf>File path where the error occurred
error_type: LoadErrorTypeType of error
message: StringError message
Trait Implementations§
Source§impl Clone for SchemaLoadError
impl Clone for SchemaLoadError
Source§fn clone(&self) -> SchemaLoadError
fn clone(&self) -> SchemaLoadError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SchemaLoadError
impl RefUnwindSafe for SchemaLoadError
impl Send for SchemaLoadError
impl Sync for SchemaLoadError
impl Unpin for SchemaLoadError
impl UnsafeUnpin for SchemaLoadError
impl UnwindSafe for SchemaLoadError
Blanket Implementations§
impl<T> Allocation for T
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