pub struct SentGroupInvitation {
pub user: User,
pub group_info: GroupInfo,
pub contact: Contact,
pub member: GroupMember,
pub undocumented: BTreeMap<String, JsonObject>,
}Expand description
§Connection progress events
Bots may use these events to track progress of connections for monitoring or debugging.
Sent when another user joins group via bot’s link.
Fields§
§user: User§group_info: GroupInfo§contact: Contact§member: GroupMember§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl Clone for SentGroupInvitation
impl Clone for SentGroupInvitation
Source§fn clone(&self) -> SentGroupInvitation
fn clone(&self) -> SentGroupInvitation
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 SentGroupInvitation
impl Debug for SentGroupInvitation
Source§impl<'de> Deserialize<'de> for SentGroupInvitation
impl<'de> Deserialize<'de> for SentGroupInvitation
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 SentGroupInvitation
impl PartialEq for SentGroupInvitation
Source§impl Serialize for SentGroupInvitation
impl Serialize for SentGroupInvitation
impl StructuralPartialEq for SentGroupInvitation
Auto Trait Implementations§
impl Freeze for SentGroupInvitation
impl RefUnwindSafe for SentGroupInvitation
impl Send for SentGroupInvitation
impl Sync for SentGroupInvitation
impl Unpin for SentGroupInvitation
impl UnwindSafe for SentGroupInvitation
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