pub enum ReadFromPathError {
Yaml(String, Error),
Io(Error),
NoFileNamePath(Utf8PathBuf),
}Variants§
Trait Implementations§
Source§impl Debug for ReadFromPathError
impl Debug for ReadFromPathError
Source§impl Display for ReadFromPathError
impl Display for ReadFromPathError
Source§impl Error for ReadFromPathError
impl Error for ReadFromPathError
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 ReadFromPathError
impl From<Error> for ReadFromPathError
Source§impl From<ReadFromPathError> for NewKeeperError
impl From<ReadFromPathError> for NewKeeperError
Source§fn from(source: ReadFromPathError) -> Self
fn from(source: ReadFromPathError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReadFromPathError
impl !RefUnwindSafe for ReadFromPathError
impl Send for ReadFromPathError
impl Sync for ReadFromPathError
impl Unpin for ReadFromPathError
impl !UnwindSafe for ReadFromPathError
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