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

pub enum CapSubCommand {
    LS,
    LIST,
    REQ,
    ACK,
    NAK,
    END,
    NEW,
    DEL,
}

A list of all of the subcommands for the capabilities extension.

Variants

Requests a list of the server's capabilities.

Requests a list of the server's capabilities.

Requests specific capabilities blindly.

Acknowledges capabilities.

Does not acknowledge certain capabilities.

Ends the capability negotiation before registration.

Signals that new capabilities are now being offered.

Signasl that the specified capabilities are cancelled and no longer available.

Methods

impl CapSubCommand
[src]

Gets the string that corresponds to this subcommand.

Trait Implementations

impl Clone for CapSubCommand
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for CapSubCommand
[src]

impl Debug for CapSubCommand
[src]

Formats the value using the given formatter.

impl PartialEq for CapSubCommand
[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 CapSubCommand
[src]

The associated error which can be returned from parsing.

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