pub struct UserFull {
pub full_user: UserFull,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
Generated from:
users.userFull#3b6d152e full_user:UserFull chats:Vector<Chat> users:Vector<User> = users.UserFullFields§
§full_user: UserFull§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Deserializable for UserFull
impl Deserializable for UserFull
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 Identifiable for UserFull
impl Identifiable for UserFull
Source§const CONSTRUCTOR_ID: u32 = 0x3b6d152e
const CONSTRUCTOR_ID: u32 = 0x3b6d152e
The constructor ID as specified in the TL schema.
Source§impl Serializable for UserFull
impl Serializable for UserFull
impl StructuralPartialEq for UserFull
Auto Trait Implementations§
impl Freeze for UserFull
impl RefUnwindSafe for UserFull
impl Send for UserFull
impl Sync for UserFull
impl Unpin for UserFull
impl UnsafeUnpin for UserFull
impl UnwindSafe for UserFull
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