Enum irc::proto::command::BatchSubCommand[][src]

pub enum BatchSubCommand {
    NETSPLIT,
    NETJOIN,
    CUSTOM(String),
}

Variants

Vendor-specific BATCH subcommands.

Methods

impl BatchSubCommand
[src]

Gets the string that corresponds to this subcommand.

Trait Implementations

impl Clone for BatchSubCommand
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BatchSubCommand
[src]

Formats the value using the given formatter. Read more

impl PartialEq for BatchSubCommand
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl FromStr for BatchSubCommand
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations