pub struct GiftUpgradeVariants {
pub models: Vec<UpgradedGiftModel>,
pub symbols: Vec<UpgradedGiftSymbol>,
pub backdrops: Vec<UpgradedGiftBackdrop>,
}Expand description
Contains all possible variants of upgraded gifts for the given regular gift
Fields§
§models: Vec<UpgradedGiftModel>Models that can be chosen for the gift after upgrade
symbols: Vec<UpgradedGiftSymbol>Symbols that can be chosen for the gift after upgrade
backdrops: Vec<UpgradedGiftBackdrop>Backdrops that can be chosen for the gift after upgrade
Trait Implementations§
Source§impl Clone for GiftUpgradeVariants
impl Clone for GiftUpgradeVariants
Source§fn clone(&self) -> GiftUpgradeVariants
fn clone(&self) -> GiftUpgradeVariants
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 GiftUpgradeVariants
impl Debug for GiftUpgradeVariants
Source§impl Default for GiftUpgradeVariants
impl Default for GiftUpgradeVariants
Source§fn default() -> GiftUpgradeVariants
fn default() -> GiftUpgradeVariants
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GiftUpgradeVariants
impl<'de> Deserialize<'de> for GiftUpgradeVariants
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 GiftUpgradeVariants
impl PartialEq for GiftUpgradeVariants
Source§impl Serialize for GiftUpgradeVariants
impl Serialize for GiftUpgradeVariants
impl StructuralPartialEq for GiftUpgradeVariants
Auto Trait Implementations§
impl Freeze for GiftUpgradeVariants
impl RefUnwindSafe for GiftUpgradeVariants
impl Send for GiftUpgradeVariants
impl Sync for GiftUpgradeVariants
impl Unpin for GiftUpgradeVariants
impl UnsafeUnpin for GiftUpgradeVariants
impl UnwindSafe for GiftUpgradeVariants
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