pub struct Query { /* private fields */ }Expand description
Query object
Implementations§
Source§impl Query
impl Query
Sourcepub fn with_params(self, params: HashMap<String, Value>) -> Self
pub fn with_params(self, params: HashMap<String, Value>) -> Self
Set query parameters
parameters is data, sent to YDB in binary form
Example with macros:
let query = Query::new("
DECLARE $val AS Int64;
SELECT $val AS res
").with_params(ydb_params!("$val" => 123 as i64));Example full:
let mut params: HashMap::<String,Value> = HashMap::new();
params.insert("$val".to_string(), Value::from(123 as i64));
let query = Query::new("
DECLARE $val AS Int64;
SELECT $val AS res
").with_params(params);Sourcepub fn with_keep_in_cache(self, val: bool) -> Self
pub fn with_keep_in_cache(self, val: bool) -> Self
Set force keep in cache flag for query. By default flag is true for query with non empty params and false for query without params.
Example:
// force use server cache for the query
let q = Query::new("SELECT 1").with_keep_in_cache(true);
// force disable server cache for the query
let q = Query::new("
DECLARE $res AS Int64")
.with_params(ydb_params!("$val" => 123 as i64))
.with_keep_in_cache(false);Trait Implementations§
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnwindSafe for Query
Blanket Implementations§
Source§impl<T> Any for T
impl<T> Any for T
Source§fn type_id_compat(&self) -> TypeId
fn type_id_compat(&self) -> TypeId
TODO: once 1.33.0 is the minimum supported compiler version, remove
Any::type_id_compat and use StdAny::type_id instead.
https://github.com/rust-lang/rust/issues/27745
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request