pub enum SponsorshipTierChangedAction {
TierChanged,
}
Expand description
SponsorshipTierChangedAction
JSON schema
{
"type": "string",
"enum": [
"tier_changed"
]
}
Variants§
TierChanged
Trait Implementations§
Source§impl Clone for SponsorshipTierChangedAction
impl Clone for SponsorshipTierChangedAction
Source§fn clone(&self) -> SponsorshipTierChangedAction
fn clone(&self) -> SponsorshipTierChangedAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SponsorshipTierChangedAction
impl Debug for SponsorshipTierChangedAction
Source§impl<'de> Deserialize<'de> for SponsorshipTierChangedAction
impl<'de> Deserialize<'de> for SponsorshipTierChangedAction
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
Source§impl From<&SponsorshipTierChangedAction> for SponsorshipTierChangedAction
impl From<&SponsorshipTierChangedAction> for SponsorshipTierChangedAction
Source§fn from(value: &SponsorshipTierChangedAction) -> Self
fn from(value: &SponsorshipTierChangedAction) -> Self
Converts to this type from the input type.
Source§impl Hash for SponsorshipTierChangedAction
impl Hash for SponsorshipTierChangedAction
Source§impl Ord for SponsorshipTierChangedAction
impl Ord for SponsorshipTierChangedAction
Source§fn cmp(&self, other: &SponsorshipTierChangedAction) -> Ordering
fn cmp(&self, other: &SponsorshipTierChangedAction) -> Ordering
1.21.0 · 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 SponsorshipTierChangedAction
impl PartialEq for SponsorshipTierChangedAction
Source§fn eq(&self, other: &SponsorshipTierChangedAction) -> bool
fn eq(&self, other: &SponsorshipTierChangedAction) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for SponsorshipTierChangedAction
impl PartialOrd for SponsorshipTierChangedAction
Source§impl TryFrom<&String> for SponsorshipTierChangedAction
impl TryFrom<&String> for SponsorshipTierChangedAction
Source§impl TryFrom<&str> for SponsorshipTierChangedAction
impl TryFrom<&str> for SponsorshipTierChangedAction
Source§impl TryFrom<String> for SponsorshipTierChangedAction
impl TryFrom<String> for SponsorshipTierChangedAction
impl Copy for SponsorshipTierChangedAction
impl Eq for SponsorshipTierChangedAction
impl StructuralPartialEq for SponsorshipTierChangedAction
Auto Trait Implementations§
impl Freeze for SponsorshipTierChangedAction
impl RefUnwindSafe for SponsorshipTierChangedAction
impl Send for SponsorshipTierChangedAction
impl Sync for SponsorshipTierChangedAction
impl Unpin for SponsorshipTierChangedAction
impl UnwindSafe for SponsorshipTierChangedAction
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