pub struct UserChatBoosts {
pub boosts: Vec<ChatBoost>,
}Expand description
A list of boosts added to a chat by a user.
Returned by getUserChatBoosts.
Fields§
§boosts: Vec<ChatBoost>The list of boosts added to the chat by the user.
Trait Implementations§
Source§impl Clone for UserChatBoosts
impl Clone for UserChatBoosts
Source§fn clone(&self) -> UserChatBoosts
fn clone(&self) -> UserChatBoosts
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 UserChatBoosts
impl Debug for UserChatBoosts
Source§impl<'de> Deserialize<'de> for UserChatBoosts
impl<'de> Deserialize<'de> for UserChatBoosts
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
Auto Trait Implementations§
impl Freeze for UserChatBoosts
impl RefUnwindSafe for UserChatBoosts
impl Send for UserChatBoosts
impl Sync for UserChatBoosts
impl Unpin for UserChatBoosts
impl UnsafeUnpin for UserChatBoosts
impl UnwindSafe for UserChatBoosts
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