Struct cassandra_protocol::frame::message_error::UnavailableError
source · pub struct UnavailableError {
pub cl: Consistency,
pub required: CInt,
pub alive: CInt,
}
Expand description
Additional info about unavailable exception
Fields§
§cl: Consistency
Consistency level of query.
required: CInt
Number of nodes that should be available to respect cl
.
alive: CInt
Number of replicas that we were know to be alive.
Trait Implementations§
source§fn clone(&self) -> UnavailableError
fn clone(&self) -> UnavailableError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§fn from_cursor(
cursor: &mut Cursor<&[u8]>,
version: Version
) -> Result<UnavailableError>
fn from_cursor( cursor: &mut Cursor<&[u8]>, version: Version ) -> Result<UnavailableError>
Tries to parse Self from a cursor of bytes.
source§fn cmp(&self, other: &UnavailableError) -> Ordering
fn cmp(&self, other: &UnavailableError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§fn eq(&self, other: &UnavailableError) -> bool
fn eq(&self, other: &UnavailableError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§fn partial_cmp(&self, other: &UnavailableError) -> Option<Ordering>
fn partial_cmp(&self, other: &UnavailableError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more