pub struct ChatBoostRemoved {
pub chat: Chat,
pub boost_id: String,
pub remove_date: i64,
pub source: ChatBoostSource,
}Expand description
A boost was removed from a chat.
Fields§
§chat: ChatThe chat that lost the boost.
boost_id: StringUnique identifier of the boost.
remove_date: i64Unix timestamp when the boost was removed.
source: ChatBoostSourceSource of the removed boost.
Trait Implementations§
Source§impl Clone for ChatBoostRemoved
impl Clone for ChatBoostRemoved
Source§fn clone(&self) -> ChatBoostRemoved
fn clone(&self) -> ChatBoostRemoved
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 ChatBoostRemoved
impl Debug for ChatBoostRemoved
Source§impl<'de> Deserialize<'de> for ChatBoostRemoved
impl<'de> Deserialize<'de> for ChatBoostRemoved
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 ChatBoostRemoved
impl RefUnwindSafe for ChatBoostRemoved
impl Send for ChatBoostRemoved
impl Sync for ChatBoostRemoved
impl Unpin for ChatBoostRemoved
impl UnsafeUnpin for ChatBoostRemoved
impl UnwindSafe for ChatBoostRemoved
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