pub struct UpdateSecretChat {
pub secret_chat: SecretChat,
}
Expand description
Some data of a secret chat has changed. This update is guaranteed to come before the secret chat identifier is returned to the application
Fields§
§secret_chat: SecretChat
New data about the secret chat
Trait Implementations§
Source§impl Clone for UpdateSecretChat
impl Clone for UpdateSecretChat
Source§fn clone(&self) -> UpdateSecretChat
fn clone(&self) -> UpdateSecretChat
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 UpdateSecretChat
impl Debug for UpdateSecretChat
Source§impl<'de> Deserialize<'de> for UpdateSecretChat
impl<'de> Deserialize<'de> for UpdateSecretChat
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 UpdateSecretChat
impl PartialEq for UpdateSecretChat
Source§impl Serialize for UpdateSecretChat
impl Serialize for UpdateSecretChat
impl StructuralPartialEq for UpdateSecretChat
Auto Trait Implementations§
impl Freeze for UpdateSecretChat
impl RefUnwindSafe for UpdateSecretChat
impl Send for UpdateSecretChat
impl Sync for UpdateSecretChat
impl Unpin for UpdateSecretChat
impl UnwindSafe for UpdateSecretChat
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