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