pub enum PathError {
DoesNotExist(String),
CannotRead(String),
}Expand description
When validating a Simpath there can be the following types of PathErrors returned
Variants§
DoesNotExist(String)
The Path entry does not exist on the file system
CannotRead(String)
The Path entry cannot be reads
Auto Trait Implementations§
impl Freeze for PathError
impl RefUnwindSafe for PathError
impl Send for PathError
impl Sync for PathError
impl Unpin for PathError
impl UnwindSafe for PathError
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