pub struct ReflogEntry {
pub index: usize,
pub old_hash: String,
pub new_hash: String,
pub action: String,
pub message: String,
pub timestamp: i64,
}Fields§
§index: usize§old_hash: String§new_hash: String§action: String§message: String§timestamp: i64Trait Implementations§
Source§impl Debug for ReflogEntry
impl Debug for ReflogEntry
Source§impl<'de> Deserialize<'de> for ReflogEntry
impl<'de> Deserialize<'de> for ReflogEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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