pub struct RealtimeMCPApprovalRequest {
pub arguments: String,
pub id: String,
pub name: String,
pub server_label: String,
}Available on crate feature
realtime only.Fields§
§arguments: StringA JSON string of arguments for the tool.
id: StringThe unique ID of the approval request.
name: StringThe name of the tool to run.
server_label: StringThe label of the MCP server making the request.
Trait Implementations§
Source§impl Clone for RealtimeMCPApprovalRequest
impl Clone for RealtimeMCPApprovalRequest
Source§fn clone(&self) -> RealtimeMCPApprovalRequest
fn clone(&self) -> RealtimeMCPApprovalRequest
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 RealtimeMCPApprovalRequest
impl Debug for RealtimeMCPApprovalRequest
Source§impl<'de> Deserialize<'de> for RealtimeMCPApprovalRequest
impl<'de> Deserialize<'de> for RealtimeMCPApprovalRequest
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 RealtimeMCPApprovalRequest
impl RefUnwindSafe for RealtimeMCPApprovalRequest
impl Send for RealtimeMCPApprovalRequest
impl Sync for RealtimeMCPApprovalRequest
impl Unpin for RealtimeMCPApprovalRequest
impl UnwindSafe for RealtimeMCPApprovalRequest
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