pub struct JoinGroupCall {
pub muted: bool,
pub video_stopped: bool,
pub call: InputGroupCall,
pub join_as: InputPeer,
pub invite_hash: Option<String>,
pub public_key: Option<[u8; 32]>,
pub block: Option<Vec<u8>>,
pub params: DataJson,
}Expand description
Generated from:
phone.joinGroupCall#8fb53057 flags:# muted:flags.0?true video_stopped:flags.2?true call:InputGroupCall join_as:InputPeer invite_hash:flags.1?string public_key:flags.3?int256 block:flags.3?bytes params:DataJSON = UpdatesFields§
§muted: bool§video_stopped: bool§call: InputGroupCall§join_as: InputPeer§invite_hash: Option<String>§public_key: Option<[u8; 32]>§block: Option<Vec<u8>>§params: DataJsonTrait Implementations§
Source§impl Clone for JoinGroupCall
impl Clone for JoinGroupCall
Source§fn clone(&self) -> JoinGroupCall
fn clone(&self) -> JoinGroupCall
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 JoinGroupCall
impl Debug for JoinGroupCall
Source§impl Identifiable for JoinGroupCall
impl Identifiable for JoinGroupCall
Source§const CONSTRUCTOR_ID: u32 = 0x8fb53057
const CONSTRUCTOR_ID: u32 = 0x8fb53057
The constructor ID as specified in the TL schema.
Source§impl PartialEq for JoinGroupCall
impl PartialEq for JoinGroupCall
Source§impl RemoteCall for JoinGroupCall
impl RemoteCall for JoinGroupCall
Source§impl Serializable for JoinGroupCall
impl Serializable for JoinGroupCall
impl StructuralPartialEq for JoinGroupCall
Auto Trait Implementations§
impl Freeze for JoinGroupCall
impl RefUnwindSafe for JoinGroupCall
impl Send for JoinGroupCall
impl Sync for JoinGroupCall
impl Unpin for JoinGroupCall
impl UnsafeUnpin for JoinGroupCall
impl UnwindSafe for JoinGroupCall
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