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§
Source§impl Clone for PreparedQuery
impl Clone for PreparedQuery
Source§impl Debug for PreparedQuery
impl Debug for PreparedQuery
Source§impl Hash for PreparedQuery
impl Hash for PreparedQuery
Source§impl Ord for PreparedQuery
impl Ord for PreparedQuery
Source§impl PartialEq for PreparedQuery
impl PartialEq for PreparedQuery
Source§impl PartialOrd for PreparedQuery
impl PartialOrd for PreparedQuery
impl Eq for PreparedQuery
Auto Trait Implementations§
impl !Freeze for PreparedQuery
impl RefUnwindSafe for PreparedQuery
impl Send for PreparedQuery
impl Sync for PreparedQuery
impl Unpin for PreparedQuery
impl UnwindSafe for PreparedQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more