pub struct UpdateGroupCallVerificationState {
pub group_call_id: i32,
pub generation: i32,
pub emojis: Vec<String>,
}Expand description
The verification state of an encrypted group call has changed; for group calls not bound to a chat only
Fields§
§group_call_id: i32Identifier of the group call
generation: i32The call state generation to which the emoji corresponds. If generation is different for two users, then their emoji may be also different
emojis: Vec<String>Group call state fingerprint represented as 4 emoji; may be empty if the state isn’t verified yet
Trait Implementations§
Source§impl Clone for UpdateGroupCallVerificationState
impl Clone for UpdateGroupCallVerificationState
Source§fn clone(&self) -> UpdateGroupCallVerificationState
fn clone(&self) -> UpdateGroupCallVerificationState
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 Default for UpdateGroupCallVerificationState
impl Default for UpdateGroupCallVerificationState
Source§fn default() -> UpdateGroupCallVerificationState
fn default() -> UpdateGroupCallVerificationState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateGroupCallVerificationState
impl<'de> Deserialize<'de> for UpdateGroupCallVerificationState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateGroupCallVerificationState
impl PartialEq for UpdateGroupCallVerificationState
Source§fn eq(&self, other: &UpdateGroupCallVerificationState) -> bool
fn eq(&self, other: &UpdateGroupCallVerificationState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateGroupCallVerificationState
Auto Trait Implementations§
impl Freeze for UpdateGroupCallVerificationState
impl RefUnwindSafe for UpdateGroupCallVerificationState
impl Send for UpdateGroupCallVerificationState
impl Sync for UpdateGroupCallVerificationState
impl Unpin for UpdateGroupCallVerificationState
impl UnsafeUnpin for UpdateGroupCallVerificationState
impl UnwindSafe for UpdateGroupCallVerificationState
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