pub enum LfsPointerIssue {
InvalidPointer {
path: String,
reason: String,
},
BinaryContent {
path: String,
},
Corrupted {
path: String,
content_preview: String,
},
}Expand description
Issue detected with an LFS pointer file.
Variants§
InvalidPointer
File is not a valid LFS pointer (missing or invalid header).
BinaryContent
File should be an LFS pointer but contains binary content (smudge filter not working).
Corrupted
Pointer file appears corrupted (invalid format).
Implementations§
Trait Implementations§
Source§impl Clone for LfsPointerIssue
impl Clone for LfsPointerIssue
Source§fn clone(&self) -> LfsPointerIssue
fn clone(&self) -> LfsPointerIssue
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 LfsPointerIssue
impl Debug for LfsPointerIssue
Source§impl PartialEq for LfsPointerIssue
impl PartialEq for LfsPointerIssue
impl Eq for LfsPointerIssue
impl StructuralPartialEq for LfsPointerIssue
Auto Trait Implementations§
impl Freeze for LfsPointerIssue
impl RefUnwindSafe for LfsPointerIssue
impl Send for LfsPointerIssue
impl Sync for LfsPointerIssue
impl Unpin for LfsPointerIssue
impl UnsafeUnpin for LfsPointerIssue
impl UnwindSafe for LfsPointerIssue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.