pub struct ParticipantJoinedChats {
pub creator_chat_ids: Vec<i64>,
pub joined_chat_ids: Vec<i64>,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
communities.participantJoinedChats
Generated from:
communities.participantJoinedChats#8d78512a creator_chat_ids:Vector<long> joined_chat_ids:Vector<long> chats:Vector<Chat> users:Vector<User> = communities.ParticipantJoinedChatsFields§
§creator_chat_ids: Vec<i64>§joined_chat_ids: Vec<i64>§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Clone for ParticipantJoinedChats
impl Clone for ParticipantJoinedChats
Source§fn clone(&self) -> ParticipantJoinedChats
fn clone(&self) -> ParticipantJoinedChats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParticipantJoinedChats
impl Debug for ParticipantJoinedChats
Source§impl Deserializable for ParticipantJoinedChats
impl Deserializable for ParticipantJoinedChats
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<ParticipantJoinedChats> for ParticipantJoinedChats
impl From<ParticipantJoinedChats> for ParticipantJoinedChats
Source§fn from(x: ParticipantJoinedChats) -> Self
fn from(x: ParticipantJoinedChats) -> Self
Converts to this type from the input type.
Source§impl Identifiable for ParticipantJoinedChats
impl Identifiable for ParticipantJoinedChats
Source§const CONSTRUCTOR_ID: u32 = 0x8d78512a
const CONSTRUCTOR_ID: u32 = 0x8d78512a
The constructor ID as specified in the TL schema.
Source§impl PartialEq for ParticipantJoinedChats
impl PartialEq for ParticipantJoinedChats
impl StructuralPartialEq for ParticipantJoinedChats
Source§impl TryFrom<ParticipantJoinedChats> for ParticipantJoinedChats
impl TryFrom<ParticipantJoinedChats> for ParticipantJoinedChats
Source§type Error = ParticipantJoinedChats
type Error = ParticipantJoinedChats
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ParticipantJoinedChats
impl RefUnwindSafe for ParticipantJoinedChats
impl Send for ParticipantJoinedChats
impl Sync for ParticipantJoinedChats
impl Unpin for ParticipantJoinedChats
impl UnsafeUnpin for ParticipantJoinedChats
impl UnwindSafe for ParticipantJoinedChats
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