Enum irksome::EventKind [] [src]

pub enum EventKind {
    Numeric(u8),
    Command(String),
}

IRC messages can be either numeric or commands.

Variants

A numeric message contains a three-digit code indicating its type.

A command message contains a space-delimited command type.