pub struct CustomToolExecutionRequest {
pub slug: String,
pub arguments: HashMap<String, Value>,
pub user_id: Option<String>,
pub connected_account_id: Option<String>,
}Expand description
Custom tool execution request
Fields§
§slug: StringTool slug
arguments: HashMap<String, Value>Execution arguments
user_id: Option<String>User ID (optional)
connected_account_id: Option<String>Connected account ID (optional)
Trait Implementations§
Source§impl Clone for CustomToolExecutionRequest
impl Clone for CustomToolExecutionRequest
Source§fn clone(&self) -> CustomToolExecutionRequest
fn clone(&self) -> CustomToolExecutionRequest
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 CustomToolExecutionRequest
impl Debug for CustomToolExecutionRequest
Source§impl<'de> Deserialize<'de> for CustomToolExecutionRequest
impl<'de> Deserialize<'de> for CustomToolExecutionRequest
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 CustomToolExecutionRequest
impl RefUnwindSafe for CustomToolExecutionRequest
impl Send for CustomToolExecutionRequest
impl Sync for CustomToolExecutionRequest
impl Unpin for CustomToolExecutionRequest
impl UnsafeUnpin for CustomToolExecutionRequest
impl UnwindSafe for CustomToolExecutionRequest
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