Struct cdrs::frame::frame_error::UnavailableError[][src]

pub struct UnavailableError {
    pub cl: Consistency,
    pub required: CInt,
    pub alive: CInt,
}

Additional info about [unavailable exception] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L1025)

Fields

Consistency level of query.

Number of nodes that should be available to respect cl.

Number of replicas that we were know to be alive.

Trait Implementations

impl Debug for UnavailableError
[src]

Formats the value using the given formatter. Read more

impl FromCursor for UnavailableError
[src]

It should return an implementor from an io::Cursor over an array of bytes.

Auto Trait Implementations