pub enum ReadConsistency {
MissingOk,
Strict,
}Expand description
§Public Contract Types
ReadConsistency
Missing-row handling policy for query execution.
This is part of the query contract and is re-exported at the db
boundary. It is stable API surface.
Variants§
Trait Implementations§
Source§impl Clone for ReadConsistency
impl Clone for ReadConsistency
Source§fn clone(&self) -> ReadConsistency
fn clone(&self) -> ReadConsistency
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 ReadConsistency
impl Debug for ReadConsistency
Source§impl PartialEq for ReadConsistency
impl PartialEq for ReadConsistency
impl Copy for ReadConsistency
impl Eq for ReadConsistency
impl StructuralPartialEq for ReadConsistency
Auto Trait Implementations§
impl Freeze for ReadConsistency
impl RefUnwindSafe for ReadConsistency
impl Send for ReadConsistency
impl Sync for ReadConsistency
impl Unpin for ReadConsistency
impl UnsafeUnpin for ReadConsistency
impl UnwindSafe for ReadConsistency
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