pub struct GiftChatThemes {
pub themes: Vec<GiftChatTheme>,
pub next_offset: String,
}Expand description
Contains a list of chat themes based on upgraded gifts
Fields§
§themes: Vec<GiftChatTheme>A list of chat themes
next_offset: StringThe offset for the next request. If empty, then there are no more results
Trait Implementations§
Source§impl Clone for GiftChatThemes
impl Clone for GiftChatThemes
Source§fn clone(&self) -> GiftChatThemes
fn clone(&self) -> GiftChatThemes
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 GiftChatThemes
impl Debug for GiftChatThemes
Source§impl Default for GiftChatThemes
impl Default for GiftChatThemes
Source§fn default() -> GiftChatThemes
fn default() -> GiftChatThemes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GiftChatThemes
impl<'de> Deserialize<'de> for GiftChatThemes
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 GiftChatThemes
impl PartialEq for GiftChatThemes
Source§impl Serialize for GiftChatThemes
impl Serialize for GiftChatThemes
impl StructuralPartialEq for GiftChatThemes
Auto Trait Implementations§
impl Freeze for GiftChatThemes
impl RefUnwindSafe for GiftChatThemes
impl Send for GiftChatThemes
impl Sync for GiftChatThemes
impl Unpin for GiftChatThemes
impl UnsafeUnpin for GiftChatThemes
impl UnwindSafe for GiftChatThemes
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