Struct git2::DiffBinary
source · 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.