Enum tokio_hglib::codec::ChannelMessage[][src]

pub enum ChannelMessage {
    Data(u8Bytes),
    InputRequest(usize),
    LineRequest(usize),
    SystemRequest(Bytes),
}

Message sent from Mercurial command server.

Variants

Data sent from server to the specified channel.

Server requesting data up to the specified size in bytes.

Server requesting a single-line input up to the specified size in bytes.

Server requesting a shell command execution at client side. (cHg extension)

Trait Implementations

impl Clone for ChannelMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ChannelMessage
[src]

Formats the value using the given formatter. Read more

impl Eq for ChannelMessage
[src]

impl PartialEq for ChannelMessage
[src]

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

This method tests for !=.

Auto Trait Implementations