Struct cassandra_protocol::frame::message_result::PreparedMetadata
source · pub struct PreparedMetadata {
pub pk_indexes: Vec<i16>,
pub global_table_spec: Option<TableSpec>,
pub col_specs: Vec<ColSpec>,
}
Expand description
The structure that represents metadata of prepared response.
Fields§
§pk_indexes: Vec<i16>
§global_table_spec: Option<TableSpec>
§col_specs: Vec<ColSpec>
Trait Implementations§
source§impl Clone for PreparedMetadata
impl Clone for PreparedMetadata
source§fn clone(&self) -> PreparedMetadata
fn clone(&self) -> PreparedMetadata
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§impl Debug for PreparedMetadata
impl Debug for PreparedMetadata
source§impl Hash for PreparedMetadata
impl Hash for PreparedMetadata
source§impl Ord for PreparedMetadata
impl Ord for PreparedMetadata
source§fn cmp(&self, other: &PreparedMetadata) -> Ordering
fn cmp(&self, other: &PreparedMetadata) -> 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§impl PartialEq<PreparedMetadata> for PreparedMetadata
impl PartialEq<PreparedMetadata> for PreparedMetadata
source§fn eq(&self, other: &PreparedMetadata) -> bool
fn eq(&self, other: &PreparedMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<PreparedMetadata> for PreparedMetadata
impl PartialOrd<PreparedMetadata> for PreparedMetadata
source§fn partial_cmp(&self, other: &PreparedMetadata) -> Option<Ordering>
fn partial_cmp(&self, other: &PreparedMetadata) -> 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