pub struct ReflogEntry {
pub id: String,
pub previous_id: String,
pub message: String,
pub committer: String,
pub date: String,
}Fields§
§id: String§previous_id: String§message: String§committer: String§date: StringTrait 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 moreSource§impl Debug for ReflogEntry
impl Debug 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