Enum tokio_hglib::codec::BlockMessage[][src]

pub enum BlockMessage {
    Command(Bytes),
    Data(Bytes),
}

Request and response sent to Mercurial command server.

Variants

Command to initiate new request, without argument.

Command argument or data sent to server.

Trait Implementations

impl Clone for BlockMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BlockMessage
[src]

Formats the value using the given formatter. Read more

impl Eq for BlockMessage
[src]

impl PartialEq for BlockMessage
[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