pub struct InternalLinkTypeChatFolderInvite {
pub invite_link: String,
}
Expand description
The link is an invite link to a chat folder. Call checkChatFolderInviteLink with the given invite link to process the link. If the link is valid and the user wants to join the chat folder, then call addChatFolderByInviteLink
Fields§
§invite_link: String
Internal representation of the invite link
Trait Implementations§
Source§impl Clone for InternalLinkTypeChatFolderInvite
impl Clone for InternalLinkTypeChatFolderInvite
Source§fn clone(&self) -> InternalLinkTypeChatFolderInvite
fn clone(&self) -> InternalLinkTypeChatFolderInvite
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 InternalLinkTypeChatFolderInvite
impl Default for InternalLinkTypeChatFolderInvite
Source§fn default() -> InternalLinkTypeChatFolderInvite
fn default() -> InternalLinkTypeChatFolderInvite
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InternalLinkTypeChatFolderInvite
impl<'de> Deserialize<'de> for InternalLinkTypeChatFolderInvite
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 InternalLinkTypeChatFolderInvite
impl PartialEq for InternalLinkTypeChatFolderInvite
Source§fn eq(&self, other: &InternalLinkTypeChatFolderInvite) -> bool
fn eq(&self, other: &InternalLinkTypeChatFolderInvite) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for InternalLinkTypeChatFolderInvite
Auto Trait Implementations§
impl Freeze for InternalLinkTypeChatFolderInvite
impl RefUnwindSafe for InternalLinkTypeChatFolderInvite
impl Send for InternalLinkTypeChatFolderInvite
impl Sync for InternalLinkTypeChatFolderInvite
impl Unpin for InternalLinkTypeChatFolderInvite
impl UnwindSafe for InternalLinkTypeChatFolderInvite
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