pub struct ApplyPatchToolCallOutputItemParam {
pub id: Option<String>,
pub call_id: String,
pub status: ApplyPatchCallOutputStatusParam,
pub output: Option<String>,
}Available on crate feature
response-types only.Expand description
The streamed output emitted by an apply patch tool call.
Fields§
§id: Option<String>The unique ID of the apply patch tool call output. Populated when this item is returned via API.
call_id: StringThe unique ID of the apply patch tool call generated by the model.
status: ApplyPatchCallOutputStatusParamThe status of the apply patch tool call output. One of completed or failed.
output: Option<String>Optional human-readable log text from the apply patch tool (e.g., patch results or errors).
Trait Implementations§
Source§impl Clone for ApplyPatchToolCallOutputItemParam
impl Clone for ApplyPatchToolCallOutputItemParam
Source§fn clone(&self) -> ApplyPatchToolCallOutputItemParam
fn clone(&self) -> ApplyPatchToolCallOutputItemParam
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<'de> Deserialize<'de> for ApplyPatchToolCallOutputItemParam
impl<'de> Deserialize<'de> for ApplyPatchToolCallOutputItemParam
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
Source§impl From<ApplyPatchToolCallOutputItemParam> for Item
impl From<ApplyPatchToolCallOutputItemParam> for Item
Source§fn from(output: ApplyPatchToolCallOutputItemParam) -> Self
fn from(output: ApplyPatchToolCallOutputItemParam) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ApplyPatchToolCallOutputItemParam
impl PartialEq for ApplyPatchToolCallOutputItemParam
Source§fn eq(&self, other: &ApplyPatchToolCallOutputItemParam) -> bool
fn eq(&self, other: &ApplyPatchToolCallOutputItemParam) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ApplyPatchToolCallOutputItemParam
Auto Trait Implementations§
impl Freeze for ApplyPatchToolCallOutputItemParam
impl RefUnwindSafe for ApplyPatchToolCallOutputItemParam
impl Send for ApplyPatchToolCallOutputItemParam
impl Sync for ApplyPatchToolCallOutputItemParam
impl Unpin for ApplyPatchToolCallOutputItemParam
impl UnwindSafe for ApplyPatchToolCallOutputItemParam
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