pub struct LookupOptions {
pub columns: Vec<String>,
pub timestamp: Option<Timestamp>,
}Expand description
Options for TableClient::lookup_rows.
Fields§
§columns: Vec<String>The columns to return. Empty means all of them.
timestamp: Option<Timestamp>The timestamp to read at. None reads the latest committed data.
Inside a transaction this is filled in for you; setting it by hand there would read at a different point than the transaction sees.
Trait Implementations§
Source§impl Clone for LookupOptions
impl Clone for LookupOptions
Source§fn clone(&self) -> LookupOptions
fn clone(&self) -> LookupOptions
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 LookupOptions
impl Debug for LookupOptions
Source§impl Default for LookupOptions
impl Default for LookupOptions
Source§fn default() -> LookupOptions
fn default() -> LookupOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LookupOptions
impl RefUnwindSafe for LookupOptions
impl Send for LookupOptions
impl Sync for LookupOptions
impl Unpin for LookupOptions
impl UnsafeUnpin for LookupOptions
impl UnwindSafe for LookupOptions
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