pub struct Gifts {
pub gifts: Vec<Gift>,
}Expand description
This object represent a list of gifts.
API Reference: link
Fields§
§gifts: Vec<Gift>The list of 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
impl StructuralPartialEq for Gifts
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