Struct cassandra_protocol::frame::frame_error::WriteFailureError [−][src]
pub struct WriteFailureError {
pub cl: Consistency,
pub received: CInt,
pub block_for: CInt,
pub num_failures: CInt,
pub write_type: WriteType,
}
Expand description
A non-timeout exception during a write request. Read more…
Fields
cl: Consistency
Consistency of the query having triggered the exception.
received: CInt
Represents the number of nodes having answered the request.
block_for: CInt
Represents the number of replicas whose acknowledgement is required to achieve cl
.
num_failures: CInt
Represents the number of nodes that experience a failure while executing the request.
write_type: WriteType
describes the type of the write that failed.
Trait Implementations
It should return an implementor from an io::Cursor
over an array of bytes.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for WriteFailureError
impl Send for WriteFailureError
impl Sync for WriteFailureError
impl Unpin for WriteFailureError
impl UnwindSafe for WriteFailureError
Blanket Implementations
Mutably borrows from an owned value. Read more