pub struct ResponseComputerToolCallOutputScreenshot {
pub type_: String,
pub file_id: Option<String>,
pub image_url: Option<String>,
}Expand description
A computer screenshot image used with the computer use tool.
Fields§
§type_: StringSpecifies the event type.
file_id: Option<String>The identifier of an uploaded file that contains the screenshot.
image_url: Option<String>The URL of the screenshot image.
Trait Implementations§
Source§impl Clone for ResponseComputerToolCallOutputScreenshot
impl Clone for ResponseComputerToolCallOutputScreenshot
Source§fn clone(&self) -> ResponseComputerToolCallOutputScreenshot
fn clone(&self) -> ResponseComputerToolCallOutputScreenshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ResponseComputerToolCallOutputScreenshot
impl<'de> Deserialize<'de> for ResponseComputerToolCallOutputScreenshot
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
Auto Trait Implementations§
impl Freeze for ResponseComputerToolCallOutputScreenshot
impl RefUnwindSafe for ResponseComputerToolCallOutputScreenshot
impl Send for ResponseComputerToolCallOutputScreenshot
impl Sync for ResponseComputerToolCallOutputScreenshot
impl Unpin for ResponseComputerToolCallOutputScreenshot
impl UnsafeUnpin for ResponseComputerToolCallOutputScreenshot
impl UnwindSafe for ResponseComputerToolCallOutputScreenshot
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