Struct cassandra_protocol::frame::frame_error::ReadTimeoutError [−][src]
pub struct ReadTimeoutError {
pub cl: Consistency,
pub received: CInt,
pub block_for: CInt,
// some fields omitted
}
Expand description
Timeout exception during a read request.
Fields
cl: Consistency
Consistency level of query.
received: CInt
i32
representing the number of nodes having acknowledged the request.
block_for: CInt
i32
representing the number of replicas whose acknowledgement is required to achieve cl
.
Implementations
Shows if a replica has responded to a query.
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 ReadTimeoutError
impl Send for ReadTimeoutError
impl Sync for ReadTimeoutError
impl Unpin for ReadTimeoutError
impl UnwindSafe for ReadTimeoutError
Blanket Implementations
Mutably borrows from an owned value. Read more