pub struct GitCommit {
pub timestamp: i64,
pub author: String,
pub hash: Option<String>,
pub subject: String,
pub files: Vec<String>,
}Fields§
§timestamp: i64§hash: Option<String>§subject: String§files: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GitCommit
impl RefUnwindSafe for GitCommit
impl Send for GitCommit
impl Sync for GitCommit
impl Unpin for GitCommit
impl UnsafeUnpin for GitCommit
impl UnwindSafe for GitCommit
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