Struct gix_worktree::status::content::FastEq
source · pub struct FastEq;
Expand description
Compares to blobs by comparing their size and oid, and only looks at the file if the size matches, therefore it’s very fast.
Trait Implementations§
source§impl CompareBlobs for FastEq
impl CompareBlobs for FastEq
§type Output = ()
type Output = ()
Output data produced by
compare_blobs()
.source§fn compare_blobs<'a, E>(
&mut self,
entry: &'a Entry,
worktree_blob_size: usize,
worktree_blob: impl ReadDataOnce<'a, E>,
_entry_blob: impl ReadDataOnce<'a, E>
) -> Result<Option<Self::Output>, E>
fn compare_blobs<'a, E>( &mut self, entry: &'a Entry, worktree_blob_size: usize, worktree_blob: impl ReadDataOnce<'a, E>, _entry_blob: impl ReadDataOnce<'a, E> ) -> Result<Option<Self::Output>, E>
Providing the underlying index
entry
, allow comparing a file in the worktree of size worktree_blob_size
and allow reading its bytes using worktree_blob
.
If this function returns None
the entry
and the worktree_blob
are assumed to be identical.
Use entry_blob
to obtain the data for the blob referred to by entry
, allowing comparisons of the data itself.Auto Trait Implementations§
impl RefUnwindSafe for FastEq
impl Send for FastEq
impl Sync for FastEq
impl Unpin for FastEq
impl UnwindSafe for FastEq
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