Struct egg_mode::entities::MentionEntity [] [src]

pub struct MentionEntity {
    pub id: u64,
    pub range: (usize, usize),
    pub name: String,
    pub screen_name: String,
}

Represnts a user mention extracted from another piece of text.

Fields

Numeric ID of the mentioned user.

The byte offsets where the user mention is located in the original text. The first index is the location of the @ symbol; the second is the location of the first character following the user screen name.

Display name of the mentioned user.

Screen name of the mentioned user, without the leading @ symbol.

Trait Implementations

impl Debug for MentionEntity
[src]

[src]

Formats the value using the given formatter.

impl Clone for MentionEntity
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more