pub struct ComputerCallOutputItemParam {
pub id: Option<ComputerCallOutputItemParam_Id>,
pub call_id: String,
pub type: String,
pub output: ComputerScreenshotImage,
pub acknowledged_safety_checks: Option<ComputerCallOutputItemParam_AcknowledgedSafetyChecks>,
pub status: Option<ComputerCallOutputItemParam_Status>,
}
Expand description
The output of a computer tool call.
Fields§
§id: Option<ComputerCallOutputItemParam_Id>
§call_id: String
The ID of the computer tool call that produced the output.
type: String
The type of the computer tool call output.
output: ComputerScreenshotImage
§acknowledged_safety_checks: Option<ComputerCallOutputItemParam_AcknowledgedSafetyChecks>
§status: Option<ComputerCallOutputItemParam_Status>
Trait Implementations§
Source§impl Clone for ComputerCallOutputItemParam
impl Clone for ComputerCallOutputItemParam
Source§fn clone(&self) -> ComputerCallOutputItemParam
fn clone(&self) -> ComputerCallOutputItemParam
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ComputerCallOutputItemParam
impl RefUnwindSafe for ComputerCallOutputItemParam
impl Send for ComputerCallOutputItemParam
impl Sync for ComputerCallOutputItemParam
impl Unpin for ComputerCallOutputItemParam
impl UnwindSafe for ComputerCallOutputItemParam
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