pub struct GitOutput {
pub stdout: String,
pub stderr: String,
pub success: bool,
}Expand description
Captured result of a single git invocation.
Fields§
§stdout: String§stderr: String§success: boolTrue when git exited 0.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GitOutput
impl RefUnwindSafe for GitOutput
impl Send for GitOutput
impl Sync for GitOutput
impl Unpin for GitOutput
impl UnsafeUnpin for GitOutput
impl UnwindSafe for GitOutput
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