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