pub struct PatchApplyEnd {
pub call_id: String,
pub turn_id: Option<String>,
pub stdout: String,
pub stderr: String,
pub success: bool,
pub changes: HashMap<String, PatchChange>,
pub extra: HashMap<String, Value>,
}Fields§
§call_id: String§turn_id: Option<String>§stdout: String§stderr: String§success: bool§changes: HashMap<String, PatchChange>Per-file manifest. Keyed by absolute file path.
extra: HashMap<String, Value>Trait Implementations§
Source§impl Clone for PatchApplyEnd
impl Clone for PatchApplyEnd
Source§fn clone(&self) -> PatchApplyEnd
fn clone(&self) -> PatchApplyEnd
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 PatchApplyEnd
impl Debug for PatchApplyEnd
Source§impl<'de> Deserialize<'de> for PatchApplyEnd
impl<'de> Deserialize<'de> for PatchApplyEnd
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 PatchApplyEnd
impl RefUnwindSafe for PatchApplyEnd
impl Send for PatchApplyEnd
impl Sync for PatchApplyEnd
impl Unpin for PatchApplyEnd
impl UnsafeUnpin for PatchApplyEnd
impl UnwindSafe for PatchApplyEnd
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