pub enum SessionSearchConsistency {
ReadThrough,
TransactionalIndex,
EventualIndex,
}Expand description
Search consistency behavior.
Variants§
ReadThrough
Reads canonical state directly.
TransactionalIndex
A materialized index is updated in the canonical transaction.
EventualIndex
An asynchronous index may lag canonical state.
Trait Implementations§
Source§impl Clone for SessionSearchConsistency
impl Clone for SessionSearchConsistency
Source§fn clone(&self) -> SessionSearchConsistency
fn clone(&self) -> SessionSearchConsistency
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 moreimpl Copy for SessionSearchConsistency
Source§impl Debug for SessionSearchConsistency
impl Debug for SessionSearchConsistency
Source§impl<'de> Deserialize<'de> for SessionSearchConsistency
impl<'de> Deserialize<'de> for SessionSearchConsistency
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SessionSearchConsistency
Source§impl PartialEq for SessionSearchConsistency
impl PartialEq for SessionSearchConsistency
Source§impl Serialize for SessionSearchConsistency
impl Serialize for SessionSearchConsistency
impl StructuralPartialEq for SessionSearchConsistency
Auto Trait Implementations§
impl Freeze for SessionSearchConsistency
impl RefUnwindSafe for SessionSearchConsistency
impl Send for SessionSearchConsistency
impl Sync for SessionSearchConsistency
impl Unpin for SessionSearchConsistency
impl UnsafeUnpin for SessionSearchConsistency
impl UnwindSafe for SessionSearchConsistency
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