pub struct ChatInviteLinkMembers {
pub total_count: i32,
pub members: Vec<ChatInviteLinkMember>,
}
Expand description
Contains a list of chat members joined a chat via an invite link
Fields§
§total_count: i32
Approximate total number of chat members found
members: Vec<ChatInviteLinkMember>
List of chat members, joined a chat via an invite link
Trait Implementations§
Source§impl Clone for ChatInviteLinkMembers
impl Clone for ChatInviteLinkMembers
Source§fn clone(&self) -> ChatInviteLinkMembers
fn clone(&self) -> ChatInviteLinkMembers
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 ChatInviteLinkMembers
impl Debug for ChatInviteLinkMembers
Source§impl Default for ChatInviteLinkMembers
impl Default for ChatInviteLinkMembers
Source§fn default() -> ChatInviteLinkMembers
fn default() -> ChatInviteLinkMembers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChatInviteLinkMembers
impl<'de> Deserialize<'de> for ChatInviteLinkMembers
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 ChatInviteLinkMembers
impl PartialEq for ChatInviteLinkMembers
Source§impl Serialize for ChatInviteLinkMembers
impl Serialize for ChatInviteLinkMembers
impl StructuralPartialEq for ChatInviteLinkMembers
Auto Trait Implementations§
impl Freeze for ChatInviteLinkMembers
impl RefUnwindSafe for ChatInviteLinkMembers
impl Send for ChatInviteLinkMembers
impl Sync for ChatInviteLinkMembers
impl Unpin for ChatInviteLinkMembers
impl UnwindSafe for ChatInviteLinkMembers
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