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