pub struct PushStatusOutput {
pub stdout: String,
pub stderr: String,
pub had_errors: bool,
}Expand description
Output produced by format_push_status.
Fields§
§stdout: StringLines for stdout (porcelain mode writes everything here).
stderr: StringLines for stderr (human-readable mode writes everything here).
had_errors: boolWhether any reference failed (the push command should exit non-zero).
Trait Implementations§
Source§impl Debug for PushStatusOutput
impl Debug for PushStatusOutput
Source§impl Default for PushStatusOutput
impl Default for PushStatusOutput
Source§fn default() -> PushStatusOutput
fn default() -> PushStatusOutput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PushStatusOutput
impl RefUnwindSafe for PushStatusOutput
impl Send for PushStatusOutput
impl Sync for PushStatusOutput
impl Unpin for PushStatusOutput
impl UnsafeUnpin for PushStatusOutput
impl UnwindSafe for PushStatusOutput
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