pub struct SponsoredChats {
pub chats: Vec<SponsoredChat>,
}Expand description
Contains a list of sponsored chats
Fields§
§chats: Vec<SponsoredChat>List of sponsored chats
Trait Implementations§
Source§impl Clone for SponsoredChats
impl Clone for SponsoredChats
Source§fn clone(&self) -> SponsoredChats
fn clone(&self) -> SponsoredChats
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 SponsoredChats
impl Debug for SponsoredChats
Source§impl Default for SponsoredChats
impl Default for SponsoredChats
Source§fn default() -> SponsoredChats
fn default() -> SponsoredChats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SponsoredChats
impl<'de> Deserialize<'de> for SponsoredChats
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 SponsoredChats
impl PartialEq for SponsoredChats
Source§fn eq(&self, other: &SponsoredChats) -> bool
fn eq(&self, other: &SponsoredChats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SponsoredChats
impl Serialize for SponsoredChats
impl StructuralPartialEq for SponsoredChats
Auto Trait Implementations§
impl Freeze for SponsoredChats
impl RefUnwindSafe for SponsoredChats
impl Send for SponsoredChats
impl Sync for SponsoredChats
impl Unpin for SponsoredChats
impl UnsafeUnpin for SponsoredChats
impl UnwindSafe for SponsoredChats
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