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