Enum irc_bot::Reaction[][src]

pub enum Reaction {
    None,
    Msg(Cow<'static, str>),
    Msgs(Cow<'static, [Cow<'static, str>]>),
    Reply(Cow<'static, str>),
    Replies(Cow<'static, [Cow<'static, str>]>),
    RawMsg(Cow<'static, str>),
    Quit(Option<Cow<'static, str>>),
}

Variants

Trait Implementations

impl From<Reaction> for BotCmdResult
[src]

Performs the conversion.

impl Debug for Reaction
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Reaction

impl Sync for Reaction