pub enum GiftCollection {
GiftCollection(GiftCollection),
}Variants§
GiftCollection(GiftCollection)
Describes collection of gifts
Trait Implementations§
Source§impl Clone for GiftCollection
impl Clone for GiftCollection
Source§fn clone(&self) -> GiftCollection
fn clone(&self) -> GiftCollection
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 GiftCollection
impl Debug for GiftCollection
Source§impl<'de> Deserialize<'de> for GiftCollection
impl<'de> Deserialize<'de> for GiftCollection
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 GiftCollection
impl PartialEq for GiftCollection
Source§impl Serialize for GiftCollection
impl Serialize for GiftCollection
impl StructuralPartialEq for GiftCollection
Auto Trait Implementations§
impl Freeze for GiftCollection
impl RefUnwindSafe for GiftCollection
impl Send for GiftCollection
impl Sync for GiftCollection
impl Unpin for GiftCollection
impl UnsafeUnpin for GiftCollection
impl UnwindSafe for GiftCollection
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