pub struct Commit {
pub commit_id: String,
pub parent_ids: Vec<String>,
pub timestamp_ms: i64,
pub message: String,
pub author: String,
}Expand description
A commit record.
Fields§
§commit_id: String§parent_ids: Vec<String>§timestamp_ms: i64§message: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Commit
impl RefUnwindSafe for Commit
impl Send for Commit
impl Sync for Commit
impl Unpin for Commit
impl UnsafeUnpin for Commit
impl UnwindSafe for Commit
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