pub enum ParsePathKind {
Direct,
AbsoluteExisting,
AbsoluteNonExisting,
}Expand description
Variants§
Direct
Do not post-process the path.
AbsoluteExisting
Convert the path to a absolute path. The path must exist.
AbsoluteNonExisting
Convert the path to a absolute path. The path might not exist.
Trait Implementations§
Source§impl Clone for ParsePathKind
impl Clone for ParsePathKind
Source§fn clone(&self) -> ParsePathKind
fn clone(&self) -> ParsePathKind
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 ParsePathKind
impl Debug for ParsePathKind
impl Copy for ParsePathKind
Auto Trait Implementations§
impl Freeze for ParsePathKind
impl RefUnwindSafe for ParsePathKind
impl Send for ParsePathKind
impl Sync for ParsePathKind
impl Unpin for ParsePathKind
impl UnwindSafe for ParsePathKind
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