#[non_exhaustive]pub enum MsgChatLink {
Contact {
conn_link: String,
profile: Profile,
business: bool,
undocumented: BTreeMap<String, JsonObject>,
},
Invitation {
inv_link: String,
profile: Profile,
undocumented: BTreeMap<String, JsonObject>,
},
Group {
conn_link: String,
group_profile: GroupProfile,
undocumented: BTreeMap<String, JsonObject>,
},
Undocumented(BTreeMap<String, JsonObject>),
}Expand description
Connection link sent in a message - only short links are allowed.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for MsgChatLink
impl Clone for MsgChatLink
Source§fn clone(&self) -> MsgChatLink
fn clone(&self) -> MsgChatLink
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 MsgChatLink
impl Debug for MsgChatLink
Source§impl<'de> Deserialize<'de> for MsgChatLink
impl<'de> Deserialize<'de> for MsgChatLink
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 MsgChatLink
impl PartialEq for MsgChatLink
Source§impl Serialize for MsgChatLink
impl Serialize for MsgChatLink
impl StructuralPartialEq for MsgChatLink
Auto Trait Implementations§
impl Freeze for MsgChatLink
impl RefUnwindSafe for MsgChatLink
impl Send for MsgChatLink
impl Sync for MsgChatLink
impl Unpin for MsgChatLink
impl UnwindSafe for MsgChatLink
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