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