pub enum AvailableGift {
AvailableGift(AvailableGift),
}Variants§
AvailableGift(AvailableGift)
Describes a gift that is available for purchase
Trait Implementations§
Source§impl Clone for AvailableGift
impl Clone for AvailableGift
Source§fn clone(&self) -> AvailableGift
fn clone(&self) -> AvailableGift
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 moreSource§impl Debug for AvailableGift
impl Debug for AvailableGift
Source§impl<'de> Deserialize<'de> for AvailableGift
impl<'de> Deserialize<'de> for AvailableGift
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 AvailableGift
impl PartialEq for AvailableGift
Source§fn eq(&self, other: &AvailableGift) -> bool
fn eq(&self, other: &AvailableGift) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AvailableGift
impl Serialize for AvailableGift
impl StructuralPartialEq for AvailableGift
Auto Trait Implementations§
impl Freeze for AvailableGift
impl RefUnwindSafe for AvailableGift
impl Send for AvailableGift
impl Sync for AvailableGift
impl Unpin for AvailableGift
impl UnsafeUnpin for AvailableGift
impl UnwindSafe for AvailableGift
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