pub struct CommitHistory {
pub commits: Vec<GitCommitRecord>,
pub file_touches: Vec<GitFileTouch>,
}Fields§
§commits: Vec<GitCommitRecord>§file_touches: Vec<GitFileTouch>Implementations§
Source§impl CommitHistory
impl CommitHistory
Trait Implementations§
Source§impl Clone for CommitHistory
impl Clone for CommitHistory
Source§fn clone(&self) -> CommitHistory
fn clone(&self) -> CommitHistory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CommitHistory
impl Debug for CommitHistory
Source§impl PartialEq for CommitHistory
impl PartialEq for CommitHistory
Source§fn eq(&self, other: &CommitHistory) -> bool
fn eq(&self, other: &CommitHistory) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommitHistory
Auto Trait Implementations§
impl Freeze for CommitHistory
impl RefUnwindSafe for CommitHistory
impl Send for CommitHistory
impl Sync for CommitHistory
impl Unpin for CommitHistory
impl UnsafeUnpin for CommitHistory
impl UnwindSafe for CommitHistory
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