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