pub struct ComputerToolCallOutput {
    pub type: String,
    pub id: String,
    pub call_id: String,
    pub acknowledged_safety_checks: Vec<ComputerToolCallSafetyCheck>,
    pub output: ComputerScreenshotImage,
    pub status: String,
}Expand description
The output of a computer tool call.
Fields§
§type: StringThe type of the computer tool call output.
id: StringThe ID of the computer tool call output.
call_id: StringThe ID of the computer tool call that produced the output.
acknowledged_safety_checks: Vec<ComputerToolCallSafetyCheck>The safety checks reported by the API that have been acknowledged by the developer.
output: ComputerScreenshotImage§status: StringThe 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