pub struct ComputerToolCallOutput {
pub type: String,
pub id: Option<String>,
pub call_id: String,
pub acknowledged_safety_checks: Option<Vec<ComputerToolCallSafetyCheck>>,
pub output: ComputerScreenshotImage,
pub status: Option<String>,
}
Expand description
The output of a computer tool call.
Fields§
§type: String
The type of the computer tool call output.
id: Option<String>
The ID of the computer tool call output.
call_id: String
The ID of the computer tool call that produced the output.
acknowledged_safety_checks: Option<Vec<ComputerToolCallSafetyCheck>>
The safety checks reported by the API that have been acknowledged by the developer.
output: ComputerScreenshotImage
§status: Option<String>
The status of the message input.
Trait Implementations§
Source§impl Clone for ComputerToolCallOutput
impl Clone for ComputerToolCallOutput
Source§fn clone(&self) -> ComputerToolCallOutput
fn clone(&self) -> ComputerToolCallOutput
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 ComputerToolCallOutput
impl RefUnwindSafe for ComputerToolCallOutput
impl Send for ComputerToolCallOutput
impl Sync for ComputerToolCallOutput
impl Unpin for ComputerToolCallOutput
impl UnwindSafe for ComputerToolCallOutput
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