pub struct CommitEntry {
pub hash: String,
pub short_hash: String,
pub author: String,
pub timestamp: i64,
pub message: String,
pub is_head: bool,
}Fields§
§hash: String§short_hash: String§timestamp: i64§message: String§is_head: boolTrait Implementations§
Source§impl Debug for CommitEntry
impl Debug for CommitEntry
Source§impl<'de> Deserialize<'de> for CommitEntry
impl<'de> Deserialize<'de> for CommitEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CommitEntry
impl RefUnwindSafe for CommitEntry
impl Send for CommitEntry
impl Sync for CommitEntry
impl Unpin for CommitEntry
impl UnsafeUnpin for CommitEntry
impl UnwindSafe for CommitEntry
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