pub struct ReflogEntry {
pub old_oid: ObjectId,
pub new_oid: ObjectId,
pub committer: Vec<u8>,
pub message: Vec<u8>,
}Fields§
§old_oid: ObjectId§new_oid: ObjectId§committer: Vec<u8>§message: Vec<u8>Implementations§
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReflogEntry
impl Debug for ReflogEntry
impl Eq for ReflogEntry
Source§impl PartialEq for ReflogEntry
impl PartialEq for ReflogEntry
Source§fn eq(&self, other: &ReflogEntry) -> bool
fn eq(&self, other: &ReflogEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReflogEntry
Auto 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