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