pub enum FollowPathFailure {
Missing,
DanglingSymlink,
SymlinkLoop,
NotDir,
}Expand description
Failure modes reported as special git cat-file --batch-check lines.
Variants§
Trait Implementations§
Source§impl Clone for FollowPathFailure
impl Clone for FollowPathFailure
Source§fn clone(&self) -> FollowPathFailure
fn clone(&self) -> FollowPathFailure
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 FollowPathFailure
impl Debug for FollowPathFailure
Source§impl PartialEq for FollowPathFailure
impl PartialEq for FollowPathFailure
impl Copy for FollowPathFailure
impl Eq for FollowPathFailure
impl StructuralPartialEq for FollowPathFailure
Auto Trait Implementations§
impl Freeze for FollowPathFailure
impl RefUnwindSafe for FollowPathFailure
impl Send for FollowPathFailure
impl Sync for FollowPathFailure
impl Unpin for FollowPathFailure
impl UnsafeUnpin for FollowPathFailure
impl UnwindSafe for FollowPathFailure
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