pub struct ChatFolderInviteLink {
pub invite_link: String,
pub name: String,
pub chat_ids: Vec<i64>,
}
Expand description
Contains a chat folder invite link
Fields§
§invite_link: String
The chat folder invite link
name: String
Name of the link
chat_ids: Vec<i64>
Identifiers of chats, included in the link
Trait Implementations§
Source§impl Clone for ChatFolderInviteLink
impl Clone for ChatFolderInviteLink
Source§fn clone(&self) -> ChatFolderInviteLink
fn clone(&self) -> ChatFolderInviteLink
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 ChatFolderInviteLink
impl Debug for ChatFolderInviteLink
Source§impl Default for ChatFolderInviteLink
impl Default for ChatFolderInviteLink
Source§fn default() -> ChatFolderInviteLink
fn default() -> ChatFolderInviteLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChatFolderInviteLink
impl<'de> Deserialize<'de> for ChatFolderInviteLink
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 ChatFolderInviteLink
impl PartialEq for ChatFolderInviteLink
Source§impl Serialize for ChatFolderInviteLink
impl Serialize for ChatFolderInviteLink
impl StructuralPartialEq for ChatFolderInviteLink
Auto Trait Implementations§
impl Freeze for ChatFolderInviteLink
impl RefUnwindSafe for ChatFolderInviteLink
impl Send for ChatFolderInviteLink
impl Sync for ChatFolderInviteLink
impl Unpin for ChatFolderInviteLink
impl UnwindSafe for ChatFolderInviteLink
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