Struct tg_bot_models::MessageEntity[][src]

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

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 in UTF-16 code units to the start of the entity

Length of the entity in UTF-16 code units

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

Optional. For “text_mention” only, the mentioned user

Trait Implementations

impl Debug for MessageEntity
[src]

Formats the value using the given formatter. Read more

impl Clone for MessageEntity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MessageEntity
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for MessageEntity
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations