[][src]Struct twitchchat::Emotes

pub struct Emotes {
    pub id: usize,
    pub ranges: Vec<Range<u16>>,
}

Emotes are little pictograms used in-line in Twitch messages

They are presented (to the irc connection) in a id:range1,range2/id2:range1,.. form which marks the byte position that the emote is located.

example:

"testing Kappa" would be 25:8-13

"Kappa testing Kappa" would be 25:0-5,14-19

Fields

id: usize

This emote id, e.g. Kappa = 25

ranges: Vec<Range<u16>>

A list of Range in the message where this emote is found

Implementations

impl Emotes[src]

pub fn parse(input: &str) -> impl Iterator<Item = Self> + '_[src]

Parse emotes from a string, returning an iterator over each emote

Trait Implementations

impl Clone for Emotes[src]

impl Debug for Emotes[src]

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

impl Eq for Emotes[src]

impl Hash for Emotes[src]

impl PartialEq<Emotes> for Emotes[src]

impl Serialize for Emotes[src]

impl StructuralEq for Emotes[src]

impl StructuralPartialEq for Emotes[src]

Auto Trait Implementations

impl RefUnwindSafe for Emotes

impl Send for Emotes

impl Sync for Emotes

impl Unpin for Emotes

impl UnwindSafe for Emotes

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.