pub struct InviteGroupCallParticipantResultSuccess {
pub chat_id: i64,
pub message_id: i64,
}Expand description
The user was invited and a service message of the type messageGroupCall was sent which can be used in declineGroupCallInvitation to cancel the invitation
Fields§
§chat_id: i64Identifier of the chat with the invitation message
message_id: i64Identifier of the message
Trait Implementations§
Source§impl Clone for InviteGroupCallParticipantResultSuccess
impl Clone for InviteGroupCallParticipantResultSuccess
Source§fn clone(&self) -> InviteGroupCallParticipantResultSuccess
fn clone(&self) -> InviteGroupCallParticipantResultSuccess
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 InviteGroupCallParticipantResultSuccess
impl Default for InviteGroupCallParticipantResultSuccess
Source§fn default() -> InviteGroupCallParticipantResultSuccess
fn default() -> InviteGroupCallParticipantResultSuccess
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InviteGroupCallParticipantResultSuccess
impl<'de> Deserialize<'de> for InviteGroupCallParticipantResultSuccess
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 InviteGroupCallParticipantResultSuccess
impl PartialEq for InviteGroupCallParticipantResultSuccess
Source§fn eq(&self, other: &InviteGroupCallParticipantResultSuccess) -> bool
fn eq(&self, other: &InviteGroupCallParticipantResultSuccess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InviteGroupCallParticipantResultSuccess
Auto Trait Implementations§
impl Freeze for InviteGroupCallParticipantResultSuccess
impl RefUnwindSafe for InviteGroupCallParticipantResultSuccess
impl Send for InviteGroupCallParticipantResultSuccess
impl Sync for InviteGroupCallParticipantResultSuccess
impl Unpin for InviteGroupCallParticipantResultSuccess
impl UnsafeUnpin for InviteGroupCallParticipantResultSuccess
impl UnwindSafe for InviteGroupCallParticipantResultSuccess
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