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
sourceimpl Clone for DiffFormat
impl Clone for DiffFormat
sourcefn clone(&self) -> DiffFormat
fn clone(&self) -> DiffFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DiffFormat
impl Debug for DiffFormat
sourceimpl PartialEq<DiffFormat> for DiffFormat
impl PartialEq<DiffFormat> for DiffFormat
impl Copy for DiffFormat
impl Eq for DiffFormat
impl StructuralEq for DiffFormat
impl StructuralPartialEq for DiffFormat
Auto Trait Implementations
impl RefUnwindSafe for DiffFormat
impl Send for DiffFormat
impl Sync for DiffFormat
impl Unpin for DiffFormat
impl UnwindSafe for DiffFormat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more