pub struct PushReport {
pub per_bookmark: Vec<(BookmarkUpdate, HookOutcome)>,
pub skipped: bool,
}Fields§
§per_bookmark: Vec<(BookmarkUpdate, HookOutcome)>Per-bookmark hook outcomes.
skipped: boolSet true if there was nothing to do (no config, no updates, or only
deletes). The caller falls through to a plain jj git push.
Implementations§
Source§impl PushReport
impl PushReport
Trait Implementations§
Source§impl Clone for PushReport
impl Clone for PushReport
Source§fn clone(&self) -> PushReport
fn clone(&self) -> PushReport
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 PushReport
impl RefUnwindSafe for PushReport
impl Send for PushReport
impl Sync for PushReport
impl Unpin for PushReport
impl UnsafeUnpin for PushReport
impl UnwindSafe for PushReport
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