pub struct InternalLinkTypeChatInvite {
pub invite_link: String,
}
Expand description
The link is a chat invite link. Call checkChatInviteLink with the given invite link to process the link. If the link is valid and the user wants to join the chat, then call joinChatByInviteLink
Fields§
§invite_link: String
Internal representation of the invite link
Trait Implementations§
Source§impl Clone for InternalLinkTypeChatInvite
impl Clone for InternalLinkTypeChatInvite
Source§fn clone(&self) -> InternalLinkTypeChatInvite
fn clone(&self) -> InternalLinkTypeChatInvite
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 InternalLinkTypeChatInvite
impl Debug for InternalLinkTypeChatInvite
Source§impl Default for InternalLinkTypeChatInvite
impl Default for InternalLinkTypeChatInvite
Source§fn default() -> InternalLinkTypeChatInvite
fn default() -> InternalLinkTypeChatInvite
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InternalLinkTypeChatInvite
impl<'de> Deserialize<'de> for InternalLinkTypeChatInvite
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 InternalLinkTypeChatInvite
Auto Trait Implementations§
impl Freeze for InternalLinkTypeChatInvite
impl RefUnwindSafe for InternalLinkTypeChatInvite
impl Send for InternalLinkTypeChatInvite
impl Sync for InternalLinkTypeChatInvite
impl Unpin for InternalLinkTypeChatInvite
impl UnwindSafe for InternalLinkTypeChatInvite
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