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