pub struct CommitGraphCommitInfo {
pub tree: ObjectId,
pub parents: Vec<ObjectId>,
pub commit_time: u64,
}Expand description
Per-commit data needed to write CDAT / Bloom.
Fields§
§tree: ObjectId§parents: Vec<ObjectId>§commit_time: u64Committer Unix timestamp (Git timestamp_t; may exceed u32).
Trait Implementations§
Source§impl Clone for CommitGraphCommitInfo
impl Clone for CommitGraphCommitInfo
Source§fn clone(&self) -> CommitGraphCommitInfo
fn clone(&self) -> CommitGraphCommitInfo
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CommitGraphCommitInfo
impl RefUnwindSafe for CommitGraphCommitInfo
impl Send for CommitGraphCommitInfo
impl Sync for CommitGraphCommitInfo
impl Unpin for CommitGraphCommitInfo
impl UnsafeUnpin for CommitGraphCommitInfo
impl UnwindSafe for CommitGraphCommitInfo
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