pub struct RetrieveCursorsQuery {
pub min_last_updated_time: Option<i64>,
pub max_last_updated_time: Option<i64>,
pub number_of_cursors: Option<i32>,
}Expand description
Query for retrieving cursors for parallel read.
Fields§
§min_last_updated_time: Option<i64>Minimum last updated time, in milliseconds since epoch.
max_last_updated_time: Option<i64>Maximum last updated time, in milliseconds since epoch.
number_of_cursors: Option<i32>Requested number of cursors.
Trait Implementations§
Source§impl Clone for RetrieveCursorsQuery
impl Clone for RetrieveCursorsQuery
Source§fn clone(&self) -> RetrieveCursorsQuery
fn clone(&self) -> RetrieveCursorsQuery
Returns a duplicate 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 RetrieveCursorsQuery
impl Debug for RetrieveCursorsQuery
Source§impl Default for RetrieveCursorsQuery
impl Default for RetrieveCursorsQuery
Source§fn default() -> RetrieveCursorsQuery
fn default() -> RetrieveCursorsQuery
Returns the “default value” for a type. Read more
Source§impl IntoParams for RetrieveCursorsQuery
impl IntoParams for RetrieveCursorsQuery
Auto Trait Implementations§
impl Freeze for RetrieveCursorsQuery
impl RefUnwindSafe for RetrieveCursorsQuery
impl Send for RetrieveCursorsQuery
impl Sync for RetrieveCursorsQuery
impl Unpin for RetrieveCursorsQuery
impl UnwindSafe for RetrieveCursorsQuery
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