pub enum FilePathErr {
NoExist,
NotStr(ValueType),
BadPath(String),
}Variants§
Trait Implementations§
Source§impl Clone for FilePathErr
impl Clone for FilePathErr
Source§fn clone(&self) -> FilePathErr
fn clone(&self) -> FilePathErr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FilePathErr
impl Debug for FilePathErr
Source§impl Display for FilePathErr
impl Display for FilePathErr
Source§impl PartialEq for FilePathErr
impl PartialEq for FilePathErr
impl StructuralPartialEq for FilePathErr
Auto Trait Implementations§
impl Freeze for FilePathErr
impl RefUnwindSafe for FilePathErr
impl Send for FilePathErr
impl Sync for FilePathErr
impl Unpin for FilePathErr
impl UnwindSafe for FilePathErr
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