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