pub struct LogEntry {
pub oid: String,
pub short_id: String,
pub message: String,
pub author: String,
pub email: String,
pub time: i64,
}Expand description
A single log entry (commit).
Fields§
§oid: StringFull commit OID.
short_id: StringShort (7-char) commit ID.
message: StringCommit message.
Author name.
email: StringAuthor email.
time: i64Commit timestamp (Unix seconds).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogEntry
impl RefUnwindSafe for LogEntry
impl Send for LogEntry
impl Sync for LogEntry
impl Unpin for LogEntry
impl UnsafeUnpin for LogEntry
impl UnwindSafe for LogEntry
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