pub struct Gifts {
pub gifts: Vec<Gift>,
}Expand description
Collection of available gifts returned by getAvailableGifts.
Fields§
§gifts: Vec<Gift>The list of available gifts.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Gifts
impl<'de> Deserialize<'de> for Gifts
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
Auto Trait Implementations§
impl Freeze for Gifts
impl RefUnwindSafe for Gifts
impl Send for Gifts
impl Sync for Gifts
impl Unpin for Gifts
impl UnsafeUnpin for Gifts
impl UnwindSafe for Gifts
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