Struct telegram_types::bot::types::MessageEntity[][src]

pub struct MessageEntity {
    pub kind: MessageEntityKind,
    pub offset: i32,
    pub length: i32,
    pub url: Option<String>,
    pub user: Option<Box<User>>,
}

One special entity in a text message. For example, hashtags, usernames, URLs, etc.

Fields

kind: MessageEntityKind

Type of the entity.

offset: i32

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

length: i32

Length of the entity in UTF-16 code units

url: Option<String>

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

user: Option<Box<User>>

For “text_mention” only, the mentioned user

Trait Implementations

impl Clone for MessageEntity[src]

impl Debug for MessageEntity[src]

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

impl Eq for MessageEntity[src]

impl PartialEq<MessageEntity> for MessageEntity[src]

impl Serialize for MessageEntity[src]

impl StructuralEq for MessageEntity[src]

impl StructuralPartialEq for MessageEntity[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.