pub enum FindAllModelFilesError {
NoParentPath {
path: PathBuf,
},
IO(Error),
}
Expand description
Errors encountered during the loading process.
Variants§
Trait Implementations§
Source§impl Debug for FindAllModelFilesError
impl Debug for FindAllModelFilesError
Source§impl Display for FindAllModelFilesError
impl Display for FindAllModelFilesError
Source§impl Error for FindAllModelFilesError
impl Error for FindAllModelFilesError
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()
Source§impl From<Error> for FindAllModelFilesError
impl From<Error> for FindAllModelFilesError
Source§impl From<FindAllModelFilesError> for LoadError
impl From<FindAllModelFilesError> for LoadError
Source§fn from(value: FindAllModelFilesError) -> Self
fn from(value: FindAllModelFilesError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FindAllModelFilesError
impl !RefUnwindSafe for FindAllModelFilesError
impl Send for FindAllModelFilesError
impl Sync for FindAllModelFilesError
impl Unpin for FindAllModelFilesError
impl !UnwindSafe for FindAllModelFilesError
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