pub struct ChatFolderInviteLinkInfo {
pub chat_folder_info: ChatFolderInfo,
pub missing_chat_ids: Vec<i64>,
pub added_chat_ids: Vec<i64>,
}
Expand description
Contains information about an invite link to a chat folder
Fields§
§chat_folder_info: ChatFolderInfo
Basic information about the chat folder; chat folder identifier will be 0 if the user didn’t have the chat folder yet
missing_chat_ids: Vec<i64>
Identifiers of the chats from the link, which aren’t added to the folder yet
added_chat_ids: Vec<i64>
Identifiers of the chats from the link, which are added to the folder already
Trait Implementations§
Source§impl Clone for ChatFolderInviteLinkInfo
impl Clone for ChatFolderInviteLinkInfo
Source§fn clone(&self) -> ChatFolderInviteLinkInfo
fn clone(&self) -> ChatFolderInviteLinkInfo
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 ChatFolderInviteLinkInfo
impl Debug for ChatFolderInviteLinkInfo
Source§impl Default for ChatFolderInviteLinkInfo
impl Default for ChatFolderInviteLinkInfo
Source§fn default() -> ChatFolderInviteLinkInfo
fn default() -> ChatFolderInviteLinkInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChatFolderInviteLinkInfo
impl<'de> Deserialize<'de> for ChatFolderInviteLinkInfo
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 ChatFolderInviteLinkInfo
impl PartialEq for ChatFolderInviteLinkInfo
Source§impl Serialize for ChatFolderInviteLinkInfo
impl Serialize for ChatFolderInviteLinkInfo
impl StructuralPartialEq for ChatFolderInviteLinkInfo
Auto Trait Implementations§
impl Freeze for ChatFolderInviteLinkInfo
impl RefUnwindSafe for ChatFolderInviteLinkInfo
impl Send for ChatFolderInviteLinkInfo
impl Sync for ChatFolderInviteLinkInfo
impl Unpin for ChatFolderInviteLinkInfo
impl UnwindSafe for ChatFolderInviteLinkInfo
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