Enum git2::DiffFormat
source · pub enum DiffFormat {
Patch,
PatchHeader,
Raw,
NameOnly,
NameStatus,
PatchId,
}
Expand description
Possible output formats for diff data
Variants§
Patch
full git diff
PatchHeader
just the headers of the patch
Raw
like git diff –raw
NameOnly
like git diff –name-only
NameStatus
like git diff –name-status
PatchId
git diff as used by git patch-id
Trait Implementations§
source§impl Clone for DiffFormat
impl Clone for DiffFormat
source§fn clone(&self) -> DiffFormat
fn clone(&self) -> DiffFormat
Returns a copy 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 DiffFormat
impl Debug for DiffFormat
source§impl PartialEq for DiffFormat
impl PartialEq for DiffFormat
source§fn eq(&self, other: &DiffFormat) -> bool
fn eq(&self, other: &DiffFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for DiffFormat
impl Eq for DiffFormat
impl StructuralPartialEq for DiffFormat
Auto Trait Implementations§
impl Freeze for DiffFormat
impl RefUnwindSafe for DiffFormat
impl Send for DiffFormat
impl Sync for DiffFormat
impl Unpin for DiffFormat
impl UnwindSafe for DiffFormat
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