pub struct PremiumFeaturePromotionAnimation {
pub feature: PremiumFeature,
pub animation: Animation,
}
Expand description
Describes a promotion animation for a Premium feature
Fields§
§feature: PremiumFeature
Premium feature
animation: Animation
Promotion animation for the feature
Trait Implementations§
Source§impl Clone for PremiumFeaturePromotionAnimation
impl Clone for PremiumFeaturePromotionAnimation
Source§fn clone(&self) -> PremiumFeaturePromotionAnimation
fn clone(&self) -> PremiumFeaturePromotionAnimation
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<'de> Deserialize<'de> for PremiumFeaturePromotionAnimation
impl<'de> Deserialize<'de> for PremiumFeaturePromotionAnimation
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 PartialEq for PremiumFeaturePromotionAnimation
impl PartialEq for PremiumFeaturePromotionAnimation
Source§fn eq(&self, other: &PremiumFeaturePromotionAnimation) -> bool
fn eq(&self, other: &PremiumFeaturePromotionAnimation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PremiumFeaturePromotionAnimation
Auto Trait Implementations§
impl Freeze for PremiumFeaturePromotionAnimation
impl RefUnwindSafe for PremiumFeaturePromotionAnimation
impl Send for PremiumFeaturePromotionAnimation
impl Sync for PremiumFeaturePromotionAnimation
impl Unpin for PremiumFeaturePromotionAnimation
impl UnwindSafe for PremiumFeaturePromotionAnimation
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