pub enum TextEntityType {
Show 18 variants
    BankCardNumber(TextEntityTypeBankCardNumber),
    Bold(TextEntityTypeBold),
    BotCommand(TextEntityTypeBotCommand),
    Cashtag(TextEntityTypeCashtag),
    Code(TextEntityTypeCode),
    EmailAddress(TextEntityTypeEmailAddress),
    Hashtag(TextEntityTypeHashtag),
    Italic(TextEntityTypeItalic),
    MediaTimestamp(TextEntityTypeMediaTimestamp),
    Mention(TextEntityTypeMention),
    MentionName(TextEntityTypeMentionName),
    PhoneNumber(TextEntityTypePhoneNumber),
    Pre(TextEntityTypePre),
    PreCode(TextEntityTypePreCode),
    Strikethrough(TextEntityTypeStrikethrough),
    TextUrl(TextEntityTypeTextUrl),
    Underline(TextEntityTypeUnderline),
    Url(TextEntityTypeUrl),
    // some variants omitted
}Expand description
Represents a part of the text which must be formatted differently
Variants§
BankCardNumber(TextEntityTypeBankCardNumber)
A bank card number. The getBankCardInfo method can be used to get information about the bank card
Bold(TextEntityTypeBold)
A bold text
BotCommand(TextEntityTypeBotCommand)
A bot command, beginning with “/”
Cashtag(TextEntityTypeCashtag)
A cashtag text, beginning with “$” and consisting of capital English letters (e.g., “$USD”)
Code(TextEntityTypeCode)
Text that must be formatted as if inside a code HTML tag
EmailAddress(TextEntityTypeEmailAddress)
An email address
Hashtag(TextEntityTypeHashtag)
A hashtag text, beginning with “#”
Italic(TextEntityTypeItalic)
An italic text
MediaTimestamp(TextEntityTypeMediaTimestamp)
A media timestamp
Mention(TextEntityTypeMention)
A mention of a user by their username
MentionName(TextEntityTypeMentionName)
A text shows instead of a raw mention of the user (e.g., when the user has no username)
PhoneNumber(TextEntityTypePhoneNumber)
A phone number
Pre(TextEntityTypePre)
Text that must be formatted as if inside a pre HTML tag
PreCode(TextEntityTypePreCode)
Text that must be formatted as if inside pre, and code HTML tags
Strikethrough(TextEntityTypeStrikethrough)
A strikethrough text
TextUrl(TextEntityTypeTextUrl)
A text description shown instead of a raw URL
Underline(TextEntityTypeUnderline)
An underlined text
Url(TextEntityTypeUrl)
An HTTP URL
Implementations§
Source§impl TextEntityType
 
impl TextEntityType
pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self>
pub fn is_bank_card_number(&self) -> bool
pub fn is_bold(&self) -> bool
pub fn is_bot_command(&self) -> bool
pub fn is_cashtag(&self) -> bool
pub fn is_code(&self) -> bool
pub fn is_email_address(&self) -> bool
pub fn is_hashtag(&self) -> bool
pub fn is_italic(&self) -> bool
pub fn is_media_timestamp(&self) -> bool
pub fn is_mention(&self) -> bool
pub fn is_mention_name(&self) -> bool
pub fn is_phone_number(&self) -> bool
pub fn is_pre(&self) -> bool
pub fn is_pre_code(&self) -> bool
pub fn is_strikethrough(&self) -> bool
pub fn is_text_url(&self) -> bool
pub fn is_underline(&self) -> bool
pub fn is_url(&self) -> bool
pub fn on_bank_card_number<F: FnOnce(&TextEntityTypeBankCardNumber)>( &self, fnc: F, ) -> &Self
pub fn on_bold<F: FnOnce(&TextEntityTypeBold)>(&self, fnc: F) -> &Self
pub fn on_bot_command<F: FnOnce(&TextEntityTypeBotCommand)>( &self, fnc: F, ) -> &Self
pub fn on_cashtag<F: FnOnce(&TextEntityTypeCashtag)>(&self, fnc: F) -> &Self
pub fn on_code<F: FnOnce(&TextEntityTypeCode)>(&self, fnc: F) -> &Self
pub fn on_email_address<F: FnOnce(&TextEntityTypeEmailAddress)>( &self, fnc: F, ) -> &Self
pub fn on_hashtag<F: FnOnce(&TextEntityTypeHashtag)>(&self, fnc: F) -> &Self
pub fn on_italic<F: FnOnce(&TextEntityTypeItalic)>(&self, fnc: F) -> &Self
pub fn on_media_timestamp<F: FnOnce(&TextEntityTypeMediaTimestamp)>( &self, fnc: F, ) -> &Self
pub fn on_mention<F: FnOnce(&TextEntityTypeMention)>(&self, fnc: F) -> &Self
pub fn on_mention_name<F: FnOnce(&TextEntityTypeMentionName)>( &self, fnc: F, ) -> &Self
pub fn on_phone_number<F: FnOnce(&TextEntityTypePhoneNumber)>( &self, fnc: F, ) -> &Self
pub fn on_pre<F: FnOnce(&TextEntityTypePre)>(&self, fnc: F) -> &Self
pub fn on_pre_code<F: FnOnce(&TextEntityTypePreCode)>(&self, fnc: F) -> &Self
pub fn on_strikethrough<F: FnOnce(&TextEntityTypeStrikethrough)>( &self, fnc: F, ) -> &Self
pub fn on_text_url<F: FnOnce(&TextEntityTypeTextUrl)>(&self, fnc: F) -> &Self
pub fn on_underline<F: FnOnce(&TextEntityTypeUnderline)>(&self, fnc: F) -> &Self
pub fn on_url<F: FnOnce(&TextEntityTypeUrl)>(&self, fnc: F) -> &Self
pub fn as_bank_card_number(&self) -> Option<&TextEntityTypeBankCardNumber>
pub fn as_bold(&self) -> Option<&TextEntityTypeBold>
pub fn as_bot_command(&self) -> Option<&TextEntityTypeBotCommand>
pub fn as_cashtag(&self) -> Option<&TextEntityTypeCashtag>
pub fn as_code(&self) -> Option<&TextEntityTypeCode>
pub fn as_email_address(&self) -> Option<&TextEntityTypeEmailAddress>
pub fn as_hashtag(&self) -> Option<&TextEntityTypeHashtag>
pub fn as_italic(&self) -> Option<&TextEntityTypeItalic>
pub fn as_media_timestamp(&self) -> Option<&TextEntityTypeMediaTimestamp>
pub fn as_mention(&self) -> Option<&TextEntityTypeMention>
pub fn as_mention_name(&self) -> Option<&TextEntityTypeMentionName>
pub fn as_phone_number(&self) -> Option<&TextEntityTypePhoneNumber>
pub fn as_pre(&self) -> Option<&TextEntityTypePre>
pub fn as_pre_code(&self) -> Option<&TextEntityTypePreCode>
pub fn as_strikethrough(&self) -> Option<&TextEntityTypeStrikethrough>
pub fn as_text_url(&self) -> Option<&TextEntityTypeTextUrl>
pub fn as_underline(&self) -> Option<&TextEntityTypeUnderline>
pub fn as_url(&self) -> Option<&TextEntityTypeUrl>
pub fn bank_card_number<T: AsRef<TextEntityTypeBankCardNumber>>(t: T) -> Self
pub fn bold<T: AsRef<TextEntityTypeBold>>(t: T) -> Self
pub fn bot_command<T: AsRef<TextEntityTypeBotCommand>>(t: T) -> Self
pub fn cashtag<T: AsRef<TextEntityTypeCashtag>>(t: T) -> Self
pub fn code<T: AsRef<TextEntityTypeCode>>(t: T) -> Self
pub fn email_address<T: AsRef<TextEntityTypeEmailAddress>>(t: T) -> Self
pub fn hashtag<T: AsRef<TextEntityTypeHashtag>>(t: T) -> Self
pub fn italic<T: AsRef<TextEntityTypeItalic>>(t: T) -> Self
pub fn media_timestamp<T: AsRef<TextEntityTypeMediaTimestamp>>(t: T) -> Self
pub fn mention<T: AsRef<TextEntityTypeMention>>(t: T) -> Self
pub fn mention_name<T: AsRef<TextEntityTypeMentionName>>(t: T) -> Self
pub fn phone_number<T: AsRef<TextEntityTypePhoneNumber>>(t: T) -> Self
pub fn pre<T: AsRef<TextEntityTypePre>>(t: T) -> Self
pub fn pre_code<T: AsRef<TextEntityTypePreCode>>(t: T) -> Self
pub fn strikethrough<T: AsRef<TextEntityTypeStrikethrough>>(t: T) -> Self
pub fn text_url<T: AsRef<TextEntityTypeTextUrl>>(t: T) -> Self
pub fn underline<T: AsRef<TextEntityTypeUnderline>>(t: T) -> Self
pub fn url<T: AsRef<TextEntityTypeUrl>>(t: T) -> Self
Trait Implementations§
Source§impl AsRef<TextEntityType> for TextEntityType
 
impl AsRef<TextEntityType> for TextEntityType
Source§fn as_ref(&self) -> &TextEntityType
 
fn as_ref(&self) -> &TextEntityType
Source§impl Clone for TextEntityType
 
impl Clone for TextEntityType
Source§fn clone(&self) -> TextEntityType
 
fn clone(&self) -> TextEntityType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read more