pub struct ComputerScreenshotImage {
pub type: String,
pub image_url: Option<String>,
pub file_id: Option<String>,
}
Expand description
A computer screenshot image used with the computer use tool.
Fields§
§type: String
Specifies the event type.
image_url: Option<String>
The URL of the screenshot image.
file_id: Option<String>
The identifier of an uploaded file that contains the screenshot.
Trait Implementations§
Source§impl Clone for ComputerScreenshotImage
impl Clone for ComputerScreenshotImage
Source§fn clone(&self) -> ComputerScreenshotImage
fn clone(&self) -> ComputerScreenshotImage
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 moreSource§impl Debug for ComputerScreenshotImage
impl Debug for ComputerScreenshotImage
Source§impl Default for ComputerScreenshotImage
impl Default for ComputerScreenshotImage
Source§fn default() -> ComputerScreenshotImage
fn default() -> ComputerScreenshotImage
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ComputerScreenshotImage
impl RefUnwindSafe for ComputerScreenshotImage
impl Send for ComputerScreenshotImage
impl Sync for ComputerScreenshotImage
impl Unpin for ComputerScreenshotImage
impl UnwindSafe for ComputerScreenshotImage
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