pub struct UpdateUser {
pub user_id: i64,
}Expand description
Fields§
§user_id: i64Trait Implementations§
Source§impl Clone for UpdateUser
impl Clone for UpdateUser
Source§fn clone(&self) -> UpdateUser
fn clone(&self) -> UpdateUser
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 UpdateUser
impl Debug for UpdateUser
Source§impl Deserializable for UpdateUser
impl Deserializable for UpdateUser
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<UpdateUser> for Update
impl From<UpdateUser> for Update
Source§fn from(x: UpdateUser) -> Self
fn from(x: UpdateUser) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateUser
impl Identifiable for UpdateUser
Source§const CONSTRUCTOR_ID: u32 = 0x20529438
const CONSTRUCTOR_ID: u32 = 0x20529438
The constructor ID as specified in the TL schema.
Source§impl PartialEq for UpdateUser
impl PartialEq for UpdateUser
Source§impl Serializable for UpdateUser
impl Serializable for UpdateUser
Source§impl TryFrom<Update> for UpdateUser
impl TryFrom<Update> for UpdateUser
impl StructuralPartialEq for UpdateUser
Auto Trait Implementations§
impl Freeze for UpdateUser
impl RefUnwindSafe for UpdateUser
impl Send for UpdateUser
impl Sync for UpdateUser
impl Unpin for UpdateUser
impl UnsafeUnpin for UpdateUser
impl UnwindSafe for UpdateUser
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