pub struct GitStash {
pub ref_name: String,
pub sha: String,
pub message: String,
}Expand description
A single stash entry.
Fields§
§ref_name: StringStash reference (e.g. “stash@{0}”).
sha: StringCommit SHA.
message: StringStash message.
Trait Implementations§
impl Eq for GitStash
impl StructuralPartialEq for GitStash
Auto Trait Implementations§
impl Freeze for GitStash
impl RefUnwindSafe for GitStash
impl Send for GitStash
impl Sync for GitStash
impl Unpin for GitStash
impl UnsafeUnpin for GitStash
impl UnwindSafe for GitStash
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