pub struct PatchApplyEndEvent {
pub call_id: String,
pub stdout: String,
pub stderr: String,
pub success: bool,
}
Fields§
§call_id: String
Identifier for the PatchApplyBegin that finished.
stdout: String
Captured stdout (summary printed by apply_patch).
stderr: String
Captured stderr (parser errors, IO failures, etc.).
success: bool
Whether the patch was applied successfully.
Trait Implementations§
Source§impl Clone for PatchApplyEndEvent
impl Clone for PatchApplyEndEvent
Source§fn clone(&self) -> PatchApplyEndEvent
fn clone(&self) -> PatchApplyEndEvent
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 moreSource§impl Debug for PatchApplyEndEvent
impl Debug for PatchApplyEndEvent
Source§impl<'de> Deserialize<'de> for PatchApplyEndEvent
impl<'de> Deserialize<'de> for PatchApplyEndEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PatchApplyEndEvent
impl RefUnwindSafe for PatchApplyEndEvent
impl Send for PatchApplyEndEvent
impl Sync for PatchApplyEndEvent
impl Unpin for PatchApplyEndEvent
impl UnwindSafe for PatchApplyEndEvent
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