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