pub enum RepositoryError {
Io(Error),
InvalidPath {
path: String,
},
InvalidUtf8 {
path: PathBuf,
},
WalkDir(Error),
}Expand description
Errors that can occur when working with a journal repository
Variants§
Io(Error)
I/O error when reading or scanning directories
InvalidPath
Error when parsing a journal file path
InvalidUtf8
Error when a path contains invalid UTF-8
WalkDir(Error)
Error from walkdir when scanning directories
Trait Implementations§
Source§impl Debug for RepositoryError
impl Debug for RepositoryError
Source§impl Display for RepositoryError
impl Display for RepositoryError
Source§impl Error for RepositoryError
impl Error for RepositoryError
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 RepositoryError
impl From<Error> for RepositoryError
Source§fn from(source: Error) -> RepositoryError
fn from(source: Error) -> RepositoryError
Converts to this type from the input type.
Source§impl From<Error> for RepositoryError
impl From<Error> for RepositoryError
Source§fn from(source: Error) -> RepositoryError
fn from(source: Error) -> RepositoryError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for RepositoryError
impl !UnwindSafe for RepositoryError
impl Freeze for RepositoryError
impl Send for RepositoryError
impl Sync for RepositoryError
impl Unpin for RepositoryError
impl UnsafeUnpin for RepositoryError
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