pub struct GroupCallInfo {
pub group_call_id: i32,
pub join_payload: String,
}Expand description
Contains information about a just created or just joined group call
Fields§
§group_call_id: i32Identifier of the group call
join_payload: StringJoin response payload for tgcalls; empty if the call isn’t joined
Trait Implementations§
Source§impl Clone for GroupCallInfo
impl Clone for GroupCallInfo
Source§fn clone(&self) -> GroupCallInfo
fn clone(&self) -> GroupCallInfo
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 GroupCallInfo
impl Debug for GroupCallInfo
Source§impl Default for GroupCallInfo
impl Default for GroupCallInfo
Source§fn default() -> GroupCallInfo
fn default() -> GroupCallInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupCallInfo
impl<'de> Deserialize<'de> for GroupCallInfo
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 GroupCallInfo
impl PartialEq for GroupCallInfo
Source§impl Serialize for GroupCallInfo
impl Serialize for GroupCallInfo
impl StructuralPartialEq for GroupCallInfo
Auto Trait Implementations§
impl Freeze for GroupCallInfo
impl RefUnwindSafe for GroupCallInfo
impl Send for GroupCallInfo
impl Sync for GroupCallInfo
impl Unpin for GroupCallInfo
impl UnsafeUnpin for GroupCallInfo
impl UnwindSafe for GroupCallInfo
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