Struct cassandra_protocol::frame::frame_error::WriteTimeoutError [−][src]
pub struct WriteTimeoutError {
pub cl: Consistency,
pub received: CInt,
pub block_for: CInt,
pub write_type: WriteType,
}
Expand description
Timeout exception during a write 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
.
write_type: WriteType
Describes the type of the write that timed out
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 WriteTimeoutError
impl Send for WriteTimeoutError
impl Sync for WriteTimeoutError
impl Unpin for WriteTimeoutError
impl UnwindSafe for WriteTimeoutError
Blanket Implementations
Mutably borrows from an owned value. Read more