pub struct BusinessLinkConnecting {
pub user: User,
pub group_info: GroupInfo,
pub host_member: GroupMember,
pub from_contact: Contact,
pub undocumented: BTreeMap<String, Value>,
}Expand description
§Connection progress events
Bots may use these events to track progress of connections for monitoring or debugging.
Contact confirmed connection.
Sent when bot connects to another business address.
Fields§
§user: User§group_info: GroupInfo§host_member: GroupMember§from_contact: Contact§undocumented: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for BusinessLinkConnecting
impl Clone for BusinessLinkConnecting
Source§fn clone(&self) -> BusinessLinkConnecting
fn clone(&self) -> BusinessLinkConnecting
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 BusinessLinkConnecting
impl Debug for BusinessLinkConnecting
Source§impl<'de> Deserialize<'de> for BusinessLinkConnecting
impl<'de> Deserialize<'de> for BusinessLinkConnecting
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BusinessLinkConnecting, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BusinessLinkConnecting, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BusinessLinkConnecting
impl PartialEq for BusinessLinkConnecting
Source§impl Serialize for BusinessLinkConnecting
impl Serialize for BusinessLinkConnecting
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for BusinessLinkConnecting
Auto Trait Implementations§
impl Freeze for BusinessLinkConnecting
impl RefUnwindSafe for BusinessLinkConnecting
impl Send for BusinessLinkConnecting
impl Sync for BusinessLinkConnecting
impl Unpin for BusinessLinkConnecting
impl UnwindSafe for BusinessLinkConnecting
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