pub struct StackResult {
pub ref_name: String,
pub tip: String,
pub commits: Vec<StackCommit>,
pub hunks_carried: usize,
pub recount: usize,
}Fields§
§ref_name: String§tip: String§commits: Vec<StackCommit>§hunks_carried: usize§recount: usizeIndependent per-commit @@ recount, summed (invariant 4).
Trait Implementations§
Source§impl Clone for StackResult
impl Clone for StackResult
Source§fn clone(&self) -> StackResult
fn clone(&self) -> StackResult
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 moreAuto Trait Implementations§
impl Freeze for StackResult
impl RefUnwindSafe for StackResult
impl Send for StackResult
impl Sync for StackResult
impl Unpin for StackResult
impl UnsafeUnpin for StackResult
impl UnwindSafe for StackResult
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