pub struct GitOutput {
pub stdout: String,
pub stderr: String,
}Expand description
Captured stdout/stderr from a git subprocess invocation.
Fields§
§stdout: String§stderr: StringAuto 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