pub struct InactiveChats {
pub dates: Vec<i32>,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
Generated from:
messages.inactiveChats#a927fec5 dates:Vector<int> chats:Vector<Chat> users:Vector<User> = messages.InactiveChatsFields§
§dates: Vec<i32>§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Clone for InactiveChats
impl Clone for InactiveChats
Source§fn clone(&self) -> InactiveChats
fn clone(&self) -> InactiveChats
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 InactiveChats
impl Debug for InactiveChats
Source§impl Deserializable for InactiveChats
impl Deserializable for InactiveChats
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<InactiveChats> for InactiveChats
impl From<InactiveChats> for InactiveChats
Source§fn from(x: InactiveChats) -> Self
fn from(x: InactiveChats) -> Self
Converts to this type from the input type.
Source§impl Identifiable for InactiveChats
impl Identifiable for InactiveChats
Source§const CONSTRUCTOR_ID: u32 = 0xa927fec5
const CONSTRUCTOR_ID: u32 = 0xa927fec5
The constructor ID as specified in the TL schema.
Source§impl PartialEq for InactiveChats
impl PartialEq for InactiveChats
Source§impl Serializable for InactiveChats
impl Serializable for InactiveChats
Source§impl TryFrom<InactiveChats> for InactiveChats
impl TryFrom<InactiveChats> for InactiveChats
Source§type Error = InactiveChats
type Error = InactiveChats
The type returned in the event of a conversion error.
impl StructuralPartialEq for InactiveChats
Auto Trait Implementations§
impl Freeze for InactiveChats
impl RefUnwindSafe for InactiveChats
impl Send for InactiveChats
impl Sync for InactiveChats
impl Unpin for InactiveChats
impl UnsafeUnpin for InactiveChats
impl UnwindSafe for InactiveChats
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