[][src]Struct tg_bot_models::MessageEntity

pub struct MessageEntity {
    pub ty: String,
    pub offset: i64,
    pub length: i64,
    pub url: Option<String>,
    pub user: Option<User>,
}

This object represents one special entity in a text message. For example, hashtags, usernames, URLs, etc.

Fields

ty: String

Type of the entity. Can be mention (@username), hashtag, cashtag, bot_command, url, email, phone_number, bold (bold text), italic (italic text), code (monowidth string), pre (monowidth block), text_link (for clickable text URLs), text_mention (for users without usernames)

offset: i64

Offset in UTF-16 code units to the start of the entity

length: i64

Length of the entity in UTF-16 code units

url: Option<String>

Optional. For “text_link” only, url that will be opened after user taps on the text

user: Option<User>

Optional. For “text_mention” only, the mentioned user

Trait Implementations

impl PartialEq<MessageEntity> for MessageEntity[src]

impl Clone for MessageEntity[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<MessageEntity> for MessageEntity[src]

impl Debug for MessageEntity[src]

impl Serialize for MessageEntity[src]

impl<'de> Deserialize<'de> for MessageEntity[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]