pub struct ReflogLine {
pub source: String,
pub reference: String,
pub old_oid: String,
pub new_oid: String,
pub actor: String,
pub timestamp: Option<String>,
pub message: String,
}Expand description
Parsed reflog line (git-style: old new actor... timestamp\tmessage).
Fields§
§source: String§reference: String§old_oid: String§new_oid: String§actor: String§timestamp: Option<String>§message: StringTrait Implementations§
Source§impl Clone for ReflogLine
impl Clone for ReflogLine
Source§fn clone(&self) -> ReflogLine
fn clone(&self) -> ReflogLine
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 ReflogLine
impl Debug for ReflogLine
impl Eq for ReflogLine
Source§impl PartialEq for ReflogLine
impl PartialEq for ReflogLine
impl StructuralPartialEq for ReflogLine
Auto Trait Implementations§
impl Freeze for ReflogLine
impl RefUnwindSafe for ReflogLine
impl Send for ReflogLine
impl Sync for ReflogLine
impl Unpin for ReflogLine
impl UnsafeUnpin for ReflogLine
impl UnwindSafe for ReflogLine
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