pub struct ResponseMcpListToolsInProgressEvent {
pub sequence_number: i64,
}
Expand description
Emitted when the system is in the process of retrieving the list of available MCP tools.
Fields§
§sequence_number: i64
The sequence number of this event.
Implementations§
Source§impl ResponseMcpListToolsInProgressEvent
impl ResponseMcpListToolsInProgressEvent
Sourcepub fn builder() -> ResponseMcpListToolsInProgressEventBuilder<((),)>
pub fn builder() -> ResponseMcpListToolsInProgressEventBuilder<((),)>
Create a builder for building ResponseMcpListToolsInProgressEvent
.
On the builder, call .sequence_number(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ResponseMcpListToolsInProgressEvent
.
Trait Implementations§
Source§impl Clone for ResponseMcpListToolsInProgressEvent
impl Clone for ResponseMcpListToolsInProgressEvent
Source§fn clone(&self) -> ResponseMcpListToolsInProgressEvent
fn clone(&self) -> ResponseMcpListToolsInProgressEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for ResponseMcpListToolsInProgressEvent
impl<'de> Deserialize<'de> for ResponseMcpListToolsInProgressEvent
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
Source§impl PartialEq for ResponseMcpListToolsInProgressEvent
impl PartialEq for ResponseMcpListToolsInProgressEvent
Source§fn eq(&self, other: &ResponseMcpListToolsInProgressEvent) -> bool
fn eq(&self, other: &ResponseMcpListToolsInProgressEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for ResponseMcpListToolsInProgressEvent
impl StructuralPartialEq for ResponseMcpListToolsInProgressEvent
Auto Trait Implementations§
impl Freeze for ResponseMcpListToolsInProgressEvent
impl RefUnwindSafe for ResponseMcpListToolsInProgressEvent
impl Send for ResponseMcpListToolsInProgressEvent
impl Sync for ResponseMcpListToolsInProgressEvent
impl Unpin for ResponseMcpListToolsInProgressEvent
impl UnwindSafe for ResponseMcpListToolsInProgressEvent
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