pub struct MessageVideoChatScheduled {
pub group_call_id: i32,
pub start_date: i32,
}
Expand description
A new video chat was scheduled
Fields§
§group_call_id: i32
Identifier of the video chat. The video chat can be received through the method getGroupCall
start_date: i32
Point in time (Unix timestamp) when the group call is supposed to be started by an administrator
Trait Implementations§
Source§impl Clone for MessageVideoChatScheduled
impl Clone for MessageVideoChatScheduled
Source§fn clone(&self) -> MessageVideoChatScheduled
fn clone(&self) -> MessageVideoChatScheduled
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 MessageVideoChatScheduled
impl Debug for MessageVideoChatScheduled
Source§impl Default for MessageVideoChatScheduled
impl Default for MessageVideoChatScheduled
Source§fn default() -> MessageVideoChatScheduled
fn default() -> MessageVideoChatScheduled
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageVideoChatScheduled
impl<'de> Deserialize<'de> for MessageVideoChatScheduled
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
impl StructuralPartialEq for MessageVideoChatScheduled
Auto Trait Implementations§
impl Freeze for MessageVideoChatScheduled
impl RefUnwindSafe for MessageVideoChatScheduled
impl Send for MessageVideoChatScheduled
impl Sync for MessageVideoChatScheduled
impl Unpin for MessageVideoChatScheduled
impl UnwindSafe for MessageVideoChatScheduled
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