pub enum TmeUrlType {
User(TmeUrlTypeUser),
Supergroup(TmeUrlTypeSupergroup),
ChatInvite(TmeUrlTypeChatInvite),
StickerSet(TmeUrlTypeStickerSet),
}Variants§
User(TmeUrlTypeUser)
A URL linking to a user
Supergroup(TmeUrlTypeSupergroup)
A URL linking to a public supergroup or channel
ChatInvite(TmeUrlTypeChatInvite)
A chat invite link
StickerSet(TmeUrlTypeStickerSet)
A URL linking to a sticker set
Trait Implementations§
Source§impl Clone for TmeUrlType
impl Clone for TmeUrlType
Source§fn clone(&self) -> TmeUrlType
fn clone(&self) -> TmeUrlType
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 TmeUrlType
impl Debug for TmeUrlType
Source§impl<'de> Deserialize<'de> for TmeUrlType
impl<'de> Deserialize<'de> for TmeUrlType
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 TmeUrlType
impl PartialEq for TmeUrlType
Source§impl Serialize for TmeUrlType
impl Serialize for TmeUrlType
impl StructuralPartialEq for TmeUrlType
Auto Trait Implementations§
impl Freeze for TmeUrlType
impl RefUnwindSafe for TmeUrlType
impl Send for TmeUrlType
impl Sync for TmeUrlType
impl Unpin for TmeUrlType
impl UnwindSafe for TmeUrlType
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