pub enum JsonRpcRequestForExperimentalCallFunctionMethod {
ExperimentalCallFunction,
}Expand description
JsonRpcRequestForExperimentalCallFunctionMethod
JSON schema
{
"type": "string",
"enum": [
"EXPERIMENTAL_call_function"
]
}Variants§
ExperimentalCallFunction
Trait Implementations§
Source§impl Clone for JsonRpcRequestForExperimentalCallFunctionMethod
impl Clone for JsonRpcRequestForExperimentalCallFunctionMethod
Source§fn clone(&self) -> JsonRpcRequestForExperimentalCallFunctionMethod
fn clone(&self) -> JsonRpcRequestForExperimentalCallFunctionMethod
Returns a duplicate of the value. Read more
1.0.0 · 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 JsonRpcRequestForExperimentalCallFunctionMethod
impl<'de> Deserialize<'de> for JsonRpcRequestForExperimentalCallFunctionMethod
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 From<&JsonRpcRequestForExperimentalCallFunctionMethod> for JsonRpcRequestForExperimentalCallFunctionMethod
impl From<&JsonRpcRequestForExperimentalCallFunctionMethod> for JsonRpcRequestForExperimentalCallFunctionMethod
Source§fn from(value: &JsonRpcRequestForExperimentalCallFunctionMethod) -> Self
fn from(value: &JsonRpcRequestForExperimentalCallFunctionMethod) -> Self
Converts to this type from the input type.
Source§impl Ord for JsonRpcRequestForExperimentalCallFunctionMethod
impl Ord for JsonRpcRequestForExperimentalCallFunctionMethod
Source§fn cmp(
&self,
other: &JsonRpcRequestForExperimentalCallFunctionMethod,
) -> Ordering
fn cmp( &self, other: &JsonRpcRequestForExperimentalCallFunctionMethod, ) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for JsonRpcRequestForExperimentalCallFunctionMethod
impl PartialEq for JsonRpcRequestForExperimentalCallFunctionMethod
Source§fn eq(&self, other: &JsonRpcRequestForExperimentalCallFunctionMethod) -> bool
fn eq(&self, other: &JsonRpcRequestForExperimentalCallFunctionMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for JsonRpcRequestForExperimentalCallFunctionMethod
impl PartialOrd for JsonRpcRequestForExperimentalCallFunctionMethod
Source§impl TryFrom<&String> for JsonRpcRequestForExperimentalCallFunctionMethod
impl TryFrom<&String> for JsonRpcRequestForExperimentalCallFunctionMethod
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for JsonRpcRequestForExperimentalCallFunctionMethod
impl TryFrom<&str> for JsonRpcRequestForExperimentalCallFunctionMethod
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for JsonRpcRequestForExperimentalCallFunctionMethod
impl TryFrom<String> for JsonRpcRequestForExperimentalCallFunctionMethod
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for JsonRpcRequestForExperimentalCallFunctionMethod
impl Eq for JsonRpcRequestForExperimentalCallFunctionMethod
impl StructuralPartialEq for JsonRpcRequestForExperimentalCallFunctionMethod
Auto Trait Implementations§
impl Freeze for JsonRpcRequestForExperimentalCallFunctionMethod
impl RefUnwindSafe for JsonRpcRequestForExperimentalCallFunctionMethod
impl Send for JsonRpcRequestForExperimentalCallFunctionMethod
impl Sync for JsonRpcRequestForExperimentalCallFunctionMethod
impl Unpin for JsonRpcRequestForExperimentalCallFunctionMethod
impl UnsafeUnpin for JsonRpcRequestForExperimentalCallFunctionMethod
impl UnwindSafe for JsonRpcRequestForExperimentalCallFunctionMethod
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