pub struct GitResult {
pub success: bool,
pub stdout: String,
pub stderr: String,
}Expand description
Result of a git command execution.
Fields§
§success: bool§stdout: String§stderr: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for GitResult
impl RefUnwindSafe for GitResult
impl Send for GitResult
impl Sync for GitResult
impl Unpin for GitResult
impl UnsafeUnpin for GitResult
impl UnwindSafe for GitResult
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