#[non_exhaustive]pub enum Mode {
StandardReadRemoteWrites(Box<StandardReadRemoteWrites>),
DataBoostReadLocalWrites(Box<DataBoostReadLocalWrites>),
}Expand description
Which type of read needs to consistently observe which type of write?
Default: standard_read_remote_writes
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
StandardReadRemoteWrites(Box<StandardReadRemoteWrites>)
Checks that reads using an app profile with StandardIsolation can
see all writes committed before the token was created, even if the
read and write target different clusters.
DataBoostReadLocalWrites(Box<DataBoostReadLocalWrites>)
Checks that reads using an app profile with DataBoostIsolationReadOnly
can see all writes committed before the token was created, but only if
the read and write target the same cluster.
Trait Implementations§
impl StructuralPartialEq for Mode
Auto Trait Implementations§
impl Freeze for Mode
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnwindSafe for Mode
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