pub struct CommitRow {
pub id: String,
pub summary: String,
pub author: String,
pub time: String,
}Expand description
One row of the commit log.
Fields§
§id: StringShort commit id.
summary: StringFirst line of the message.
Author name.
time: StringCommit time (RFC3339 or seconds), as a display string.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CommitRow
impl<'de> Deserialize<'de> for CommitRow
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
impl Eq for CommitRow
impl StructuralPartialEq for CommitRow
Auto Trait Implementations§
impl Freeze for CommitRow
impl RefUnwindSafe for CommitRow
impl Send for CommitRow
impl Sync for CommitRow
impl Unpin for CommitRow
impl UnsafeUnpin for CommitRow
impl UnwindSafe for CommitRow
Blanket Implementations§
impl<T> Allocation for T
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