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] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec)
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
sourcefn clone(&self) -> UnavailableError
fn clone(&self) -> UnavailableError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourcefn 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.
sourcefn cmp(&self, other: &UnavailableError) -> Ordering
fn cmp(&self, other: &UnavailableError) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourcefn eq(&self, other: &UnavailableError) -> bool
fn eq(&self, other: &UnavailableError) -> bool
sourcefn partial_cmp(&self, other: &UnavailableError) -> Option<Ordering>
fn partial_cmp(&self, other: &UnavailableError) -> Option<Ordering>
1.0.0 · sourcefn 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 moreAuto Trait Implementations
Blanket Implementations
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more