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<DiffFormat> for DiffFormat
impl PartialEq<DiffFormat> 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 ==
.