pub struct LookupOptions<'a> {
pub timestamp: Option<Timestamp>,
pub column_filter: Vec<&'a str>,
}Expand description
Options for Client::lookup_rows.
Fields§
§timestamp: Option<Timestamp>The read timestamp. None reads the latest committed data; inside a
tablet transaction it must be the transaction’s start timestamp, which
Transaction::lookup_rows fills in.
column_filter: Vec<&'a str>The columns to return. Empty means all of them.
Trait Implementations§
Source§impl<'a> Clone for LookupOptions<'a>
impl<'a> Clone for LookupOptions<'a>
Source§fn clone(&self) -> LookupOptions<'a>
fn clone(&self) -> LookupOptions<'a>
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<'a> Debug for LookupOptions<'a>
impl<'a> Debug for LookupOptions<'a>
Source§impl<'a> Default for LookupOptions<'a>
impl<'a> Default for LookupOptions<'a>
Source§fn default() -> LookupOptions<'a>
fn default() -> LookupOptions<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for LookupOptions<'a>
impl<'a> RefUnwindSafe for LookupOptions<'a>
impl<'a> Send for LookupOptions<'a>
impl<'a> Sync for LookupOptions<'a>
impl<'a> Unpin for LookupOptions<'a>
impl<'a> UnsafeUnpin for LookupOptions<'a>
impl<'a> UnwindSafe for LookupOptions<'a>
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