pub struct ApplyGitResult {
pub exit_code: i32,
pub applied_paths: Vec<String>,
pub skipped_paths: Vec<String>,
pub conflicted_paths: Vec<String>,
pub stdout: String,
pub stderr: String,
pub cmd_for_log: String,
}Expand description
Result of running apply_git_patch, including paths gleaned from stdout/stderr.
Fields§
§exit_code: i32§applied_paths: Vec<String>§skipped_paths: Vec<String>§conflicted_paths: Vec<String>§stdout: String§stderr: String§cmd_for_log: StringTrait Implementations§
Source§impl Clone for ApplyGitResult
impl Clone for ApplyGitResult
Source§fn clone(&self) -> ApplyGitResult
fn clone(&self) -> ApplyGitResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ApplyGitResult
impl RefUnwindSafe for ApplyGitResult
impl Send for ApplyGitResult
impl Sync for ApplyGitResult
impl Unpin for ApplyGitResult
impl UnwindSafe for ApplyGitResult
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