#[non_exhaustive]pub enum MsgChatLink {
Contact {
conn_link: String,
profile: Profile,
business: bool,
undocumented: JsonObject,
},
Invitation {
inv_link: String,
profile: Profile,
undocumented: JsonObject,
},
Group {
conn_link: String,
group_profile: GroupProfile,
undocumented: JsonObject,
},
Undocumented(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.
Implementations§
Source§impl MsgChatLink
impl MsgChatLink
pub fn make_contact(conn_link: String, profile: Profile, business: bool) -> Self
pub fn make_invitation(inv_link: String, profile: Profile) -> Self
pub fn make_group(conn_link: String, group_profile: GroupProfile) -> Self
Source§impl MsgChatLink
impl MsgChatLink
pub fn contact(&self) -> Option<MsgChatLinkContactRef<'_>>
pub fn invitation(&self) -> Option<MsgChatLinkInvitationRef<'_>>
pub fn group(&self) -> Option<MsgChatLinkGroupRef<'_>>
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 (const: unstable) · 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§fn eq(&self, other: &MsgChatLink) -> bool
fn eq(&self, other: &MsgChatLink) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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