pub struct MessageVideoChatStarted {
pub group_call_id: i32,
}
Expand description
A newly created video chat
Fields§
§group_call_id: i32
Identifier of the video chat. The video chat can be received through the method getGroupCall
Trait Implementations§
Source§impl Clone for MessageVideoChatStarted
impl Clone for MessageVideoChatStarted
Source§fn clone(&self) -> MessageVideoChatStarted
fn clone(&self) -> MessageVideoChatStarted
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 MessageVideoChatStarted
impl Debug for MessageVideoChatStarted
Source§impl Default for MessageVideoChatStarted
impl Default for MessageVideoChatStarted
Source§fn default() -> MessageVideoChatStarted
fn default() -> MessageVideoChatStarted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageVideoChatStarted
impl<'de> Deserialize<'de> for MessageVideoChatStarted
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 MessageVideoChatStarted
impl PartialEq for MessageVideoChatStarted
Source§impl Serialize for MessageVideoChatStarted
impl Serialize for MessageVideoChatStarted
impl StructuralPartialEq for MessageVideoChatStarted
Auto Trait Implementations§
impl Freeze for MessageVideoChatStarted
impl RefUnwindSafe for MessageVideoChatStarted
impl Send for MessageVideoChatStarted
impl Sync for MessageVideoChatStarted
impl Unpin for MessageVideoChatStarted
impl UnwindSafe for MessageVideoChatStarted
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