pub enum OneOfMcpMethodParametersOrExpression {
Map(HashMap<String, Value>),
Expression(String),
}Expand description
Represents a value that can be either an object (map) or a runtime expression string
Variants§
Map(HashMap<String, Value>)
A key/value mapping of parameters
Expression(String)
A runtime expression
Trait Implementations§
Source§impl Clone for OneOfMcpMethodParametersOrExpression
impl Clone for OneOfMcpMethodParametersOrExpression
Source§fn clone(&self) -> OneOfMcpMethodParametersOrExpression
fn clone(&self) -> OneOfMcpMethodParametersOrExpression
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<'de> Deserialize<'de> for OneOfMcpMethodParametersOrExpression
impl<'de> Deserialize<'de> for OneOfMcpMethodParametersOrExpression
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 OneOfMcpMethodParametersOrExpression
impl PartialEq for OneOfMcpMethodParametersOrExpression
Source§fn eq(&self, other: &OneOfMcpMethodParametersOrExpression) -> bool
fn eq(&self, other: &OneOfMcpMethodParametersOrExpression) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OneOfMcpMethodParametersOrExpression
Auto Trait Implementations§
impl Freeze for OneOfMcpMethodParametersOrExpression
impl RefUnwindSafe for OneOfMcpMethodParametersOrExpression
impl Send for OneOfMcpMethodParametersOrExpression
impl Sync for OneOfMcpMethodParametersOrExpression
impl Unpin for OneOfMcpMethodParametersOrExpression
impl UnsafeUnpin for OneOfMcpMethodParametersOrExpression
impl UnwindSafe for OneOfMcpMethodParametersOrExpression
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