pub struct LogRecord {
pub refname: String,
pub update_index: u64,
pub old_id: ObjectId,
pub new_id: ObjectId,
pub name: String,
pub email: String,
pub time_seconds: u64,
pub tz_offset: i16,
pub message: String,
}Expand description
A decoded log record.
Fields§
§refname: StringReference name.
update_index: u64Update index.
old_id: ObjectIdOld object ID.
new_id: ObjectIdNew object ID.
name: StringCommitter name.
email: StringCommitter email (without angle brackets).
time_seconds: u64Time in seconds since epoch.
tz_offset: i16Timezone offset in minutes (signed).
message: StringLog message.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogRecord
impl RefUnwindSafe for LogRecord
impl Send for LogRecord
impl Sync for LogRecord
impl Unpin for LogRecord
impl UnsafeUnpin for LogRecord
impl UnwindSafe for LogRecord
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