Struct cassandra_protocol::query::prepared_query::PreparedQuery
source · [−]pub struct PreparedQuery {
pub id: CBytesShort,
pub query: String,
pub keyspace: Option<String>,
pub pk_indexes: Vec<i16>,
pub result_metadata_id: ArcSwapOption<CBytesShort>,
}
Fields
id: CBytesShort
query: String
keyspace: Option<String>
pk_indexes: Vec<i16>
result_metadata_id: ArcSwapOption<CBytesShort>
Trait Implementations
sourceimpl Clone for PreparedQuery
impl Clone for PreparedQuery
sourceimpl Debug for PreparedQuery
impl Debug for PreparedQuery
sourceimpl Hash for PreparedQuery
impl Hash for PreparedQuery
sourceimpl Ord for PreparedQuery
impl Ord for PreparedQuery
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<PreparedQuery> for PreparedQuery
impl PartialEq<PreparedQuery> for PreparedQuery
sourceimpl PartialOrd<PreparedQuery> for PreparedQuery
impl PartialOrd<PreparedQuery> for PreparedQuery
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
1.0.0 · sourcefn 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 moreimpl Eq for PreparedQuery
Auto Trait Implementations
impl RefUnwindSafe for PreparedQuery
impl Send for PreparedQuery
impl Sync for PreparedQuery
impl Unpin for PreparedQuery
impl UnwindSafe for PreparedQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more