pub struct ApplyPatchCallOutput {
pub call_id: String,
pub status: ApplyPatchCallOutputStatus,
pub type_: String,
pub id: Option<String>,
pub output: Option<String>,
}Expand description
The streamed output emitted by an apply patch tool call.
Fields§
§call_id: StringThe unique ID of the apply patch tool call generated by the model.
status: ApplyPatchCallOutputStatusThe status of the apply patch tool call output. One of completed or failed.
type_: StringThe type of the item. Always apply_patch_call_output.
id: Option<String>The unique ID of the apply patch tool call output.
output: Option<String>Optional human-readable log text from the apply patch tool (e.g., patch results
Trait Implementations§
Source§impl Clone for ApplyPatchCallOutput
impl Clone for ApplyPatchCallOutput
Source§fn clone(&self) -> ApplyPatchCallOutput
fn clone(&self) -> ApplyPatchCallOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApplyPatchCallOutput
impl Debug for ApplyPatchCallOutput
Source§impl<'de> Deserialize<'de> for ApplyPatchCallOutput
impl<'de> Deserialize<'de> for ApplyPatchCallOutput
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 ApplyPatchCallOutput
impl RefUnwindSafe for ApplyPatchCallOutput
impl Send for ApplyPatchCallOutput
impl Sync for ApplyPatchCallOutput
impl Unpin for ApplyPatchCallOutput
impl UnsafeUnpin for ApplyPatchCallOutput
impl UnwindSafe for ApplyPatchCallOutput
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