Enum kudu::Error [] [src]

pub enum Error {
    InvalidArgument(String),
    Rpc(RpcError),
    Master(MasterError),
    TabletServer(TabletServerError),
    Io(Error),
    Serialization(String),
    VersionMismatch(String),
    Backoff,
    TimedOut,
    Cancelled,
    ConnectionError,
    NegotiationError(&'static str),
    NoRangePartition,
}

Variants

The operation failed because of an invalid argument.

A Kudu RPC error.

A Kudu Master error.

A Kudu tablet server error.

An I/O error.

An error serializing, deserializing, encoding, or decoding data.

An error due to a version mismatch between the client and server.

The send queue is full.

The operation timed out. Includes zero or more errors which resulted in retries.

The operation was cancelled.

The connection encountered an error or hangup.

An operation failed because the range partition did not exist.

Methods

impl Error
[src]

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Clone for Error
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Error
[src]

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

This method tests for !=.

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<RpcError> for Error
[src]

Performs the conversion.

impl From<MasterError> for Error
[src]

Performs the conversion.

impl From<TabletServerError> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<ProtobufError> for Error
[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter.