#[non_exhaustive]pub enum CallToolResponse {
Complete(CallToolResult),
InputRequired(InputRequiredResult),
Task(CreateTaskResult),
}Expand description
Result of a tools/call request, including the MRTR intermediate result.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Complete(CallToolResult)
The server completed the tool call.
InputRequired(InputRequiredResult)
The server requires client-side input before the tool call can complete.
Task(CreateTaskResult)
The server materialized a task for this call (SEP-2663 Tasks extension,
resultType: "task"). The client polls tasks/get for the result.
Trait Implementations§
Source§impl Clone for CallToolResponse
impl Clone for CallToolResponse
Source§fn clone(&self) -> CallToolResponse
fn clone(&self) -> CallToolResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CallToolResponse
impl Debug for CallToolResponse
Source§impl From<CallToolResponse> for ServerResult
impl From<CallToolResponse> for ServerResult
Source§fn from(response: CallToolResponse) -> Self
fn from(response: CallToolResponse) -> Self
Converts to this type from the input type.
Source§impl From<CallToolResult> for CallToolResponse
impl From<CallToolResult> for CallToolResponse
Source§fn from(result: CallToolResult) -> Self
fn from(result: CallToolResult) -> Self
Converts to this type from the input type.
Source§impl From<CreateTaskResult> for CallToolResponse
impl From<CreateTaskResult> for CallToolResponse
Source§fn from(result: CreateTaskResult) -> Self
fn from(result: CreateTaskResult) -> Self
Converts to this type from the input type.
Source§impl From<InputRequiredResult> for CallToolResponse
impl From<InputRequiredResult> for CallToolResponse
Source§fn from(result: InputRequiredResult) -> Self
fn from(result: InputRequiredResult) -> Self
Converts to this type from the input type.
Source§impl IntoCallToolResult for CallToolResponse
Available on crate feature server only.
impl IntoCallToolResult for CallToolResponse
Available on crate feature
server only.fn into_call_tool_result(self) -> Result<CallToolResponse, ErrorData>
Auto Trait Implementations§
impl !RefUnwindSafe for CallToolResponse
impl !UnwindSafe for CallToolResponse
impl Freeze for CallToolResponse
impl Send for CallToolResponse
impl Sync for CallToolResponse
impl Unpin for CallToolResponse
impl UnsafeUnpin for CallToolResponse
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