pub struct FoundChatBoosts {
pub total_count: i32,
pub boosts: Vec<ChatBoost>,
pub next_offset: String,
}
Expand description
Contains a list of boosts applied to a chat
Fields§
§total_count: i32
Total number of boosts applied to the chat
boosts: Vec<ChatBoost>
List of boosts
next_offset: String
The offset for the next request. If empty, there are no more results
Trait Implementations§
Source§impl Clone for FoundChatBoosts
impl Clone for FoundChatBoosts
Source§fn clone(&self) -> FoundChatBoosts
fn clone(&self) -> FoundChatBoosts
Returns a copy 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 FoundChatBoosts
impl Debug for FoundChatBoosts
Source§impl Default for FoundChatBoosts
impl Default for FoundChatBoosts
Source§fn default() -> FoundChatBoosts
fn default() -> FoundChatBoosts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundChatBoosts
impl<'de> Deserialize<'de> for FoundChatBoosts
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 FoundChatBoosts
impl PartialEq for FoundChatBoosts
Source§impl Serialize for FoundChatBoosts
impl Serialize for FoundChatBoosts
impl StructuralPartialEq for FoundChatBoosts
Auto Trait Implementations§
impl Freeze for FoundChatBoosts
impl RefUnwindSafe for FoundChatBoosts
impl Send for FoundChatBoosts
impl Sync for FoundChatBoosts
impl Unpin for FoundChatBoosts
impl UnwindSafe for FoundChatBoosts
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