pub struct QueryContextUpdate {
pub timeout_seconds: Option<u64>,
pub limit: Option<usize>,
pub timing_enabled: Option<bool>,
pub page_size: Option<usize>,
}Expand description
Query context update structure
Fields§
§timeout_seconds: Option<u64>New timeout in seconds
limit: Option<usize>New default limit
timing_enabled: Option<bool>Enable/disable timing
page_size: Option<usize>New page size
Trait Implementations§
Source§impl Clone for QueryContextUpdate
impl Clone for QueryContextUpdate
Source§fn clone(&self) -> QueryContextUpdate
fn clone(&self) -> QueryContextUpdate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QueryContextUpdate
impl Debug for QueryContextUpdate
Source§impl Default for QueryContextUpdate
impl Default for QueryContextUpdate
Source§fn default() -> QueryContextUpdate
fn default() -> QueryContextUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QueryContextUpdate
impl RefUnwindSafe for QueryContextUpdate
impl Send for QueryContextUpdate
impl Sync for QueryContextUpdate
impl Unpin for QueryContextUpdate
impl UnsafeUnpin for QueryContextUpdate
impl UnwindSafe for QueryContextUpdate
Blanket Implementations§
impl<T> Allocation for T
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