pub struct UpdateGroupCallEncryptedMessage {
pub call: InputGroupCall,
pub from_id: Peer,
pub encrypted_message: Vec<u8>,
}Expand description
Read updateGroupCallEncryptedMessage docs.
Generated from the following TL definition:
updateGroupCallEncryptedMessage#c957a766 call:InputGroupCall from_id:Peer encrypted_message:bytes = UpdateFields§
§call: InputGroupCall§from_id: Peer§encrypted_message: Vec<u8>Trait Implementations§
Source§impl Clone for UpdateGroupCallEncryptedMessage
impl Clone for UpdateGroupCallEncryptedMessage
Source§fn clone(&self) -> UpdateGroupCallEncryptedMessage
fn clone(&self) -> UpdateGroupCallEncryptedMessage
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 From<UpdateGroupCallEncryptedMessage> for Update
impl From<UpdateGroupCallEncryptedMessage> for Update
Source§fn from(x: UpdateGroupCallEncryptedMessage) -> Self
fn from(x: UpdateGroupCallEncryptedMessage) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateGroupCallEncryptedMessage
impl Identifiable for UpdateGroupCallEncryptedMessage
Source§const CONSTRUCTOR_ID: u32 = 3377964902
const CONSTRUCTOR_ID: u32 = 3377964902
The unique identifier for the type.
Source§impl PartialEq for UpdateGroupCallEncryptedMessage
impl PartialEq for UpdateGroupCallEncryptedMessage
Source§fn eq(&self, other: &UpdateGroupCallEncryptedMessage) -> bool
fn eq(&self, other: &UpdateGroupCallEncryptedMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateGroupCallEncryptedMessage
Auto Trait Implementations§
impl Freeze for UpdateGroupCallEncryptedMessage
impl RefUnwindSafe for UpdateGroupCallEncryptedMessage
impl Send for UpdateGroupCallEncryptedMessage
impl Sync for UpdateGroupCallEncryptedMessage
impl Unpin for UpdateGroupCallEncryptedMessage
impl UnsafeUnpin for UpdateGroupCallEncryptedMessage
impl UnwindSafe for UpdateGroupCallEncryptedMessage
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