Enum kudu::MasterErrorCode [] [src]

pub enum MasterErrorCode {
    UnknownError,
    InvalidSchema,
    TableNotFound,
    TableAlreadyPresent,
    TooManyTablets,
    CatalogManagerNotInitialized,
    NotTheLeader,
    InvalidReplicationFactor,
    TabletNotRunning,
}

Variants

An error which has no more specific error code. The Status code and message may reveal more details.

The schema provided for a request was not well-formed.

The requested table does not exist

The name requested for the table is already in use

The number of tablets requested for a new table is over the per TS limit.

Catalog manager is not yet initialized.

The operation attempted can only be invoked against either the leader or a single non-distributed master, which this node isn't.

The replication factor is invalid, either because it is too low, too high, or an even number.

A tablet involved in the operation is not running.

Trait Implementations

impl Debug for MasterErrorCode
[src]

Formats the value using the given formatter.

impl Clone for MasterErrorCode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MasterErrorCode
[src]

impl PartialEq for MasterErrorCode
[src]

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

This method tests for !=.

impl Eq for MasterErrorCode
[src]

impl Hash for MasterErrorCode
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl From<MasterErrorCodePB> for MasterErrorCode
[src]

Performs the conversion.