pub struct GroupCall {
pub call: GroupCall,
pub participants: Vec<GroupCallParticipant>,
pub participants_next_offset: String,
pub chats: Vec<Chat>,
pub users: Vec<User>,
}Expand description
Generated from:
phone.groupCall#9e727aad call:GroupCall participants:Vector<GroupCallParticipant> participants_next_offset:string chats:Vector<Chat> users:Vector<User> = phone.GroupCallFields§
§call: GroupCall§participants: Vec<GroupCallParticipant>§participants_next_offset: String§chats: Vec<Chat>§users: Vec<User>Trait Implementations§
Source§impl Deserializable for GroupCall
impl Deserializable for GroupCall
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 GroupCall
impl Identifiable for GroupCall
Source§const CONSTRUCTOR_ID: u32 = 0x9e727aad
const CONSTRUCTOR_ID: u32 = 0x9e727aad
The constructor ID as specified in the TL schema.
Source§impl Serializable for GroupCall
impl Serializable for GroupCall
impl StructuralPartialEq for GroupCall
Auto Trait Implementations§
impl Freeze for GroupCall
impl RefUnwindSafe for GroupCall
impl Send for GroupCall
impl Sync for GroupCall
impl Unpin for GroupCall
impl UnsafeUnpin for GroupCall
impl UnwindSafe for GroupCall
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