pub struct ReflogEntry {
pub old_oid: ObjectId,
pub new_oid: ObjectId,
pub identity: String,
pub message: String,
}Expand description
A single reflog entry.
Fields§
§old_oid: ObjectIdPrevious object ID.
new_oid: ObjectIdNew object ID.
identity: StringIdentity string: "Name <email> timestamp tz".
message: StringThe log message.
Trait Implementations§
Source§impl Clone for ReflogEntry
impl Clone for ReflogEntry
Source§fn clone(&self) -> ReflogEntry
fn clone(&self) -> ReflogEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ReflogEntry
impl RefUnwindSafe for ReflogEntry
impl Send for ReflogEntry
impl Sync for ReflogEntry
impl Unpin for ReflogEntry
impl UnsafeUnpin for ReflogEntry
impl UnwindSafe for ReflogEntry
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