pub struct ApplyPatchToolCallOutputItemParam {
pub id: Option<String>,
pub call_id: String,
pub status: ApplyPatchCallOutputStatusParam,
pub output: Option<String>,
}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 (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<'de> Deserialize<'de> for ApplyPatchToolCallOutputItemParam
impl<'de> Deserialize<'de> for ApplyPatchToolCallOutputItemParam
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApplyPatchToolCallOutputItemParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApplyPatchToolCallOutputItemParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ApplyPatchToolCallOutputItemParam
impl Serialize for ApplyPatchToolCallOutputItemParam
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 UnsafeUnpin 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