pub struct Chats {
pub chats: Vec<Chat>,
}Expand description
Fields§
§chats: Vec<Chat>Trait Implementations§
Source§impl Deserializable for Chats
impl Deserializable for Chats
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 Chats
impl Identifiable for Chats
Source§const CONSTRUCTOR_ID: u32 = 0x64ff9fd5
const CONSTRUCTOR_ID: u32 = 0x64ff9fd5
The constructor ID as specified in the TL schema.
Source§impl Serializable for Chats
impl Serializable for Chats
impl StructuralPartialEq for Chats
Auto Trait Implementations§
impl Freeze for Chats
impl RefUnwindSafe for Chats
impl Send for Chats
impl Sync for Chats
impl Unpin for Chats
impl UnsafeUnpin for Chats
impl UnwindSafe for Chats
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