pub struct Member {
pub member_id: i32,
pub invited_by: i32,
pub join_date: u64,
pub is_admin: bool,
pub can_kick: bool,
}Expand description
Represents an individual member within the conversation
Fields§
§member_id: i32The member’s identifier
invited_by: i32Identifier of the user who invited the member
join_date: u64The date and time the member was added to the conversation, in Unix Timestamp format
is_admin: boolIndicates whether the member is an administrator.
can_kick: boolIndicates whether the member has the ability to remove other members This field may not be present if the member is a bot, a detail not explicitly mentioned in the VK API documentation
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Member
impl<'de> Deserialize<'de> for Member
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
Auto Trait Implementations§
impl Freeze for Member
impl RefUnwindSafe for Member
impl Send for Member
impl Sync for Member
impl Unpin for Member
impl UnwindSafe for Member
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