pub struct DiffBinary<'a> { /* private fields */ }Expand description
Structure describing the binary contents of a diff.
Implementations§
Source§impl<'a> DiffBinary<'a>
impl<'a> DiffBinary<'a>
Sourcepub fn contains_data(&self) -> bool
pub fn contains_data(&self) -> bool
Returns whether there is data in this binary structure or not.
If this is true, then this was produced and included binary content.
If this is false then this was generated knowing only that a binary
file changed but without providing the data, probably from a patch that
said Binary files a/file.txt and b/file.txt differ.
Sourcepub fn old_file(&self) -> DiffBinaryFile<'a>
pub fn old_file(&self) -> DiffBinaryFile<'a>
The contents of the old file.
Sourcepub fn new_file(&self) -> DiffBinaryFile<'a>
pub fn new_file(&self) -> DiffBinaryFile<'a>
The contents of the new file.
Auto Trait Implementations§
impl<'a> Freeze for DiffBinary<'a>
impl<'a> RefUnwindSafe for DiffBinary<'a>
impl<'a> !Send for DiffBinary<'a>
impl<'a> !Sync for DiffBinary<'a>
impl<'a> Unpin for DiffBinary<'a>
impl<'a> UnwindSafe for DiffBinary<'a>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more