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