pub struct ToolExecutionProgressData {
pub progress_message: String,
pub tool_call_id: String,
}Expand description
Tool execution progress notification with status message
Fields§
§progress_message: StringHuman-readable progress status message (e.g., from an MCP server)
tool_call_id: StringTool call ID this progress notification belongs to
Trait Implementations§
Source§impl Clone for ToolExecutionProgressData
impl Clone for ToolExecutionProgressData
Source§fn clone(&self) -> ToolExecutionProgressData
fn clone(&self) -> ToolExecutionProgressData
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 ToolExecutionProgressData
impl Debug for ToolExecutionProgressData
Source§impl<'de> Deserialize<'de> for ToolExecutionProgressData
impl<'de> Deserialize<'de> for ToolExecutionProgressData
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 ToolExecutionProgressData
impl RefUnwindSafe for ToolExecutionProgressData
impl Send for ToolExecutionProgressData
impl Sync for ToolExecutionProgressData
impl Unpin for ToolExecutionProgressData
impl UnsafeUnpin for ToolExecutionProgressData
impl UnwindSafe for ToolExecutionProgressData
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