pub struct ComputerToolCallOutputResource {
pub type: String,
pub id: String,
pub call_id: String,
pub acknowledged_safety_checks: Option<Vec<ComputerToolCallSafetyCheck>>,
pub output: ComputerScreenshotImage,
pub status: Option<String>,
}Fields§
§type: StringThe type of the computer tool call output.
id: StringThe unique ID of the computer call tool output.
call_id: StringThe 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 ComputerToolCallOutputResource
impl Clone for ComputerToolCallOutputResource
Source§fn clone(&self) -> ComputerToolCallOutputResource
fn clone(&self) -> ComputerToolCallOutputResource
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 moreAuto Trait Implementations§
impl Freeze for ComputerToolCallOutputResource
impl RefUnwindSafe for ComputerToolCallOutputResource
impl Send for ComputerToolCallOutputResource
impl Sync for ComputerToolCallOutputResource
impl Unpin for ComputerToolCallOutputResource
impl UnwindSafe for ComputerToolCallOutputResource
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