#[non_exhaustive]pub enum McpToolsetType {
McpToolset,
}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.
McpToolset
Trait Implementations§
Source§impl Clone for McpToolsetType
impl Clone for McpToolsetType
Source§fn clone(&self) -> McpToolsetType
fn clone(&self) -> McpToolsetType
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 McpToolsetType
impl Debug for McpToolsetType
Source§impl<'de> Deserialize<'de> for McpToolsetType
impl<'de> Deserialize<'de> for McpToolsetType
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
impl Eq for McpToolsetType
Source§impl PartialEq for McpToolsetType
impl PartialEq for McpToolsetType
Source§impl Serialize for McpToolsetType
impl Serialize for McpToolsetType
impl StructuralPartialEq for McpToolsetType
Auto Trait Implementations§
impl Freeze for McpToolsetType
impl RefUnwindSafe for McpToolsetType
impl Send for McpToolsetType
impl Sync for McpToolsetType
impl Unpin for McpToolsetType
impl UnsafeUnpin for McpToolsetType
impl UnwindSafe for McpToolsetType
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