pub struct PushResult {
pub success: bool,
pub rebased: bool,
pub events_rebased: usize,
pub message: String,
}Expand description
Result of a push operation
Fields§
§success: boolWhether the push succeeded
rebased: boolWhether a rebase was needed
events_rebased: usizeNumber of events rebased (if any)
message: StringMessage describing what happened
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PushResult
impl RefUnwindSafe for PushResult
impl Send for PushResult
impl Sync for PushResult
impl Unpin for PushResult
impl UnwindSafe for PushResult
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