Struct cassandra_protocol::frame::message_prepare::BodyReqPrepare
source · pub struct BodyReqPrepare {
pub query: String,
pub keyspace: Option<String>,
}
Expand description
Struct that represents a body of a envelope of type prepare
Fields§
§query: String
§keyspace: Option<String>
Implementations§
Trait Implementations§
source§impl Clone for BodyReqPrepare
impl Clone for BodyReqPrepare
source§fn clone(&self) -> BodyReqPrepare
fn clone(&self) -> BodyReqPrepare
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 BodyReqPrepare
impl Debug for BodyReqPrepare
source§impl Default for BodyReqPrepare
impl Default for BodyReqPrepare
source§fn default() -> BodyReqPrepare
fn default() -> BodyReqPrepare
Returns the “default value” for a type. Read more
source§impl FromCursor for BodyReqPrepare
impl FromCursor for BodyReqPrepare
source§impl Hash for BodyReqPrepare
impl Hash for BodyReqPrepare
source§impl Ord for BodyReqPrepare
impl Ord for BodyReqPrepare
source§fn cmp(&self, other: &BodyReqPrepare) -> Ordering
fn cmp(&self, other: &BodyReqPrepare) -> 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<BodyReqPrepare> for BodyReqPrepare
impl PartialEq<BodyReqPrepare> for BodyReqPrepare
source§fn eq(&self, other: &BodyReqPrepare) -> bool
fn eq(&self, other: &BodyReqPrepare) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<BodyReqPrepare> for BodyReqPrepare
impl PartialOrd<BodyReqPrepare> for BodyReqPrepare
source§fn partial_cmp(&self, other: &BodyReqPrepare) -> Option<Ordering>
fn partial_cmp(&self, other: &BodyReqPrepare) -> 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