Enum hglib::Chunk [] [src]

pub enum Chunk {
    Output(Vec<u8>),
    Error(Vec<u8>),
    Debug(Vec<u8>),
    Result(i32),
    Input(i32),
    LineInput(i32),
}

A type representing a "chunk" of data received from the command server.

Variants

Data received on the output channel (equivalent to stdout).

Data received on the error channel (equivalent to stderr).

Data received on the debug channel (log entries).

The exit code of a Mercurial command.

Indicates that the client should send input of the given maximum length.

Indicates that the client should send line-oriented input of the given maximum length.

Trait Implementations

impl Debug for Chunk
[src]

Formats the value using the given formatter.