[][src]Struct emojic::constants::EmojiWithTone

pub struct EmojiWithTone<'a> {
    pub one_toned_code: &'a str,
    pub two_toned_code: &'a str,
    pub default_tone: &'a str,
}

Fields

one_toned_code: &'a strtwo_toned_code: &'a strdefault_tone: &'a str

Implementations

impl EmojiWithTone<'_>[src]

pub const fn one_toned(code: &'static str) -> Self[src]

pub const fn two_toned(mut self: Self, code: &'static str) -> Self[src]

pub const fn default_tone(mut self: Self, tone: &'static str) -> Self[src]

pub fn tone(&self, tones: Vec<&str>) -> String[src]

Trait Implementations

impl Display for EmojiWithTone<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for EmojiWithTone<'a>[src]

impl<'a> Send for EmojiWithTone<'a>[src]

impl<'a> Sync for EmojiWithTone<'a>[src]

impl<'a> Unpin for EmojiWithTone<'a>[src]

impl<'a> UnwindSafe for EmojiWithTone<'a>[src]

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> From<T> for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.