pub struct GitOutput {
pub stdout: String,
pub stderr: String,
pub exit_code: Option<i32>,
}Fields§
§stdout: String§stderr: String§exit_code: Option<i32>Trait Implementations§
impl Eq for GitOutput
impl StructuralPartialEq for GitOutput
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