pub struct GitStashEntry {
pub index: u16,
pub oid: GitOid,
pub time: i64,
pub tz: i16,
pub message: String,
}Expand description
One stash entry.
Fields§
§index: u16The N of stash@{N}.
oid: GitOid§time: i64§tz: i16§message: StringTrait Implementations§
Source§impl Clone for GitStashEntry
impl Clone for GitStashEntry
Source§fn clone(&self) -> GitStashEntry
fn clone(&self) -> GitStashEntry
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 GitStashEntry
impl Debug for GitStashEntry
Source§impl Default for GitStashEntry
impl Default for GitStashEntry
Source§fn default() -> GitStashEntry
fn default() -> GitStashEntry
Returns the “default value” for a type. Read more
impl Eq for GitStashEntry
Source§impl PartialEq for GitStashEntry
impl PartialEq for GitStashEntry
impl StructuralPartialEq for GitStashEntry
Auto Trait Implementations§
impl Freeze for GitStashEntry
impl RefUnwindSafe for GitStashEntry
impl Send for GitStashEntry
impl Sync for GitStashEntry
impl Unpin for GitStashEntry
impl UnsafeUnpin for GitStashEntry
impl UnwindSafe for GitStashEntry
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