pub struct UpdateBotStopped {
pub user_id: i64,
pub date: i32,
pub stopped: bool,
pub qts: i32,
}Expand description
Generated from:
updateBotStopped#c4870a49 user_id:long date:int stopped:Bool qts:int = UpdateFields§
§user_id: i64§date: i32§stopped: bool§qts: i32Trait Implementations§
Source§impl Clone for UpdateBotStopped
impl Clone for UpdateBotStopped
Source§fn clone(&self) -> UpdateBotStopped
fn clone(&self) -> UpdateBotStopped
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 UpdateBotStopped
impl Debug for UpdateBotStopped
Source§impl Deserializable for UpdateBotStopped
impl Deserializable for UpdateBotStopped
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<UpdateBotStopped> for Update
impl From<UpdateBotStopped> for Update
Source§fn from(x: UpdateBotStopped) -> Self
fn from(x: UpdateBotStopped) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateBotStopped
impl Identifiable for UpdateBotStopped
Source§const CONSTRUCTOR_ID: u32 = 0xc4870a49
const CONSTRUCTOR_ID: u32 = 0xc4870a49
The constructor ID as specified in the TL schema.
Source§impl PartialEq for UpdateBotStopped
impl PartialEq for UpdateBotStopped
Source§impl Serializable for UpdateBotStopped
impl Serializable for UpdateBotStopped
Source§impl TryFrom<Update> for UpdateBotStopped
impl TryFrom<Update> for UpdateBotStopped
impl StructuralPartialEq for UpdateBotStopped
Auto Trait Implementations§
impl Freeze for UpdateBotStopped
impl RefUnwindSafe for UpdateBotStopped
impl Send for UpdateBotStopped
impl Sync for UpdateBotStopped
impl Unpin for UpdateBotStopped
impl UnsafeUnpin for UpdateBotStopped
impl UnwindSafe for UpdateBotStopped
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