pub struct GiftsForResale {
pub total_count: i32,
pub gifts: Vec<GiftForResale>,
pub models: Vec<UpgradedGiftModelCount>,
pub symbols: Vec<UpgradedGiftSymbolCount>,
pub backdrops: Vec<UpgradedGiftBackdropCount>,
pub next_offset: String,
}Expand description
Describes gifts available for resale
Fields§
§total_count: i32Total number of gifts found
gifts: Vec<GiftForResale>The gifts
models: Vec<UpgradedGiftModelCount>Available models; for searchGiftsForResale requests without offset and attributes only
symbols: Vec<UpgradedGiftSymbolCount>Available symbols; for searchGiftsForResale requests without offset and attributes only
backdrops: Vec<UpgradedGiftBackdropCount>Available backdrops; for searchGiftsForResale requests without offset and attributes only
next_offset: StringThe offset for the next request. If empty, then there are no more results
Trait Implementations§
Source§impl Clone for GiftsForResale
impl Clone for GiftsForResale
Source§fn clone(&self) -> GiftsForResale
fn clone(&self) -> GiftsForResale
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 GiftsForResale
impl Debug for GiftsForResale
Source§impl Default for GiftsForResale
impl Default for GiftsForResale
Source§fn default() -> GiftsForResale
fn default() -> GiftsForResale
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GiftsForResale
impl<'de> Deserialize<'de> for GiftsForResale
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 GiftsForResale
impl PartialEq for GiftsForResale
Source§fn eq(&self, other: &GiftsForResale) -> bool
fn eq(&self, other: &GiftsForResale) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GiftsForResale
impl Serialize for GiftsForResale
impl StructuralPartialEq for GiftsForResale
Auto Trait Implementations§
impl Freeze for GiftsForResale
impl RefUnwindSafe for GiftsForResale
impl Send for GiftsForResale
impl Sync for GiftsForResale
impl Unpin for GiftsForResale
impl UnsafeUnpin for GiftsForResale
impl UnwindSafe for GiftsForResale
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