pub struct ComputerUseFunctionCall {
pub name: String,
pub args: Value,
pub id: Option<String>,
}Expand description
Function call from Gemini Computer Use model
Fields§
§name: StringName of the action (e.g., “click_at”, “type_text_at”, “scroll_document”)
args: ValueArguments for the action
id: Option<String>Optional ID for the function call
Trait Implementations§
Source§impl Clone for ComputerUseFunctionCall
impl Clone for ComputerUseFunctionCall
Source§fn clone(&self) -> ComputerUseFunctionCall
fn clone(&self) -> ComputerUseFunctionCall
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 ComputerUseFunctionCall
impl Debug for ComputerUseFunctionCall
Source§impl<'de> Deserialize<'de> for ComputerUseFunctionCall
impl<'de> Deserialize<'de> for ComputerUseFunctionCall
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 ComputerUseFunctionCall
impl RefUnwindSafe for ComputerUseFunctionCall
impl Send for ComputerUseFunctionCall
impl Sync for ComputerUseFunctionCall
impl Unpin for ComputerUseFunctionCall
impl UnwindSafe for ComputerUseFunctionCall
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