pub(crate) enum FullPathCheck {
CheckPath,
CheckParent,
}
Expand description
Type argument for CheckedDir::verified_full_path
.
Variants§
CheckPath
Check all elements of the path, including the final element.
CheckParent
Check all elements of the path, not including the final element.
Trait Implementations§
Source§impl Clone for FullPathCheck
impl Clone for FullPathCheck
Source§fn clone(&self) -> FullPathCheck
fn clone(&self) -> FullPathCheck
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 FullPathCheck
impl Debug for FullPathCheck
impl Copy for FullPathCheck
Auto Trait Implementations§
impl Freeze for FullPathCheck
impl RefUnwindSafe for FullPathCheck
impl Send for FullPathCheck
impl Sync for FullPathCheck
impl Unpin for FullPathCheck
impl UnwindSafe for FullPathCheck
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