pub struct GroupLinkConnecting {
pub user: User,
pub group_info: GroupInfo,
pub host_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 bot joins group via another user link.
Fields§
§user: User§group_info: GroupInfo§host_member: GroupMember§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl Clone for GroupLinkConnecting
impl Clone for GroupLinkConnecting
Source§fn clone(&self) -> GroupLinkConnecting
fn clone(&self) -> GroupLinkConnecting
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 GroupLinkConnecting
impl Debug for GroupLinkConnecting
Source§impl<'de> Deserialize<'de> for GroupLinkConnecting
impl<'de> Deserialize<'de> for GroupLinkConnecting
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 GroupLinkConnecting
impl PartialEq for GroupLinkConnecting
Source§impl Serialize for GroupLinkConnecting
impl Serialize for GroupLinkConnecting
impl StructuralPartialEq for GroupLinkConnecting
Auto Trait Implementations§
impl Freeze for GroupLinkConnecting
impl RefUnwindSafe for GroupLinkConnecting
impl Send for GroupLinkConnecting
impl Sync for GroupLinkConnecting
impl Unpin for GroupLinkConnecting
impl UnwindSafe for GroupLinkConnecting
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