pub struct ComputerCallOutputItemParam {
pub call_id: String,
pub output: ComputerScreenshotImage,
pub acknowledged_safety_checks: Option<Vec<ComputerCallSafetyCheckParam>>,
pub id: Option<String>,
pub status: Option<OutputStatus>,
}Fields§
§call_id: StringThe ID of the computer tool call that produced the output.
output: ComputerScreenshotImageA computer screenshot image used with the computer use tool.
acknowledged_safety_checks: Option<Vec<ComputerCallSafetyCheckParam>>The safety checks reported by the API that have been acknowledged by the developer.
id: Option<String>The unique ID of the computer tool call output. Optional when creating.
status: Option<OutputStatus>The status of the message input. One of in_progress, completed, or incomplete.
Populated when input items are returned via API.
Trait Implementations§
Source§impl Clone for ComputerCallOutputItemParam
impl Clone for ComputerCallOutputItemParam
Source§fn clone(&self) -> ComputerCallOutputItemParam
fn clone(&self) -> ComputerCallOutputItemParam
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 moreSource§impl Debug for ComputerCallOutputItemParam
impl Debug for ComputerCallOutputItemParam
Source§impl<'de> Deserialize<'de> for ComputerCallOutputItemParam
impl<'de> Deserialize<'de> for ComputerCallOutputItemParam
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ComputerCallOutputItemParam
Auto 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