pub struct ProxyCallRequest {
pub tool_name: String,
pub args: HashMap<String, Value>,
pub raw_args: Option<Vec<String>>,
}Expand description
Request payload sent to the proxy server’s /call endpoint.
Fields§
§tool_name: String§args: HashMap<String, Value>§raw_args: Option<Vec<String>>Trait Implementations§
Source§impl Debug for ProxyCallRequest
impl Debug for ProxyCallRequest
Auto Trait Implementations§
impl Freeze for ProxyCallRequest
impl RefUnwindSafe for ProxyCallRequest
impl Send for ProxyCallRequest
impl Sync for ProxyCallRequest
impl Unpin for ProxyCallRequest
impl UnsafeUnpin for ProxyCallRequest
impl UnwindSafe for ProxyCallRequest
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