pub struct Dialogs {
pub dialogs: Vec<Dialog>,
pub messages: Vec<Message>,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
Generated from:
messages.dialogs#15ba6c40 dialogs:Vector<Dialog> messages:Vector<Message> chats:Vector<Chat> users:Vector<User> = messages.DialogsFields§
§dialogs: Vec<Dialog>§messages: Vec<Message>§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Deserializable for Dialogs
impl Deserializable for Dialogs
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 Dialogs
impl Identifiable for Dialogs
Source§const CONSTRUCTOR_ID: u32 = 0x15ba6c40
const CONSTRUCTOR_ID: u32 = 0x15ba6c40
The constructor ID as specified in the TL schema.
Source§impl Serializable for Dialogs
impl Serializable for Dialogs
impl StructuralPartialEq for Dialogs
Auto Trait Implementations§
impl Freeze for Dialogs
impl RefUnwindSafe for Dialogs
impl Send for Dialogs
impl Sync for Dialogs
impl Unpin for Dialogs
impl UnsafeUnpin for Dialogs
impl UnwindSafe for Dialogs
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