pub struct ConsistencyModelSupportEntry {
pub model: &'static str,
pub native_support: bool,
pub semantic_parity: &'static str,
pub read_after_write: bool,
pub list_consistency: bool,
pub overwrite_consistency: bool,
pub delete_consistency: bool,
pub metadata_consistency: bool,
pub failure_mode: &'static str,
pub caveat: &'static str,
}Fields§
§model: &'static str§native_support: bool§semantic_parity: &'static str§read_after_write: bool§list_consistency: bool§overwrite_consistency: bool§delete_consistency: bool§metadata_consistency: bool§failure_mode: &'static str§caveat: &'static strTrait Implementations§
Source§impl Clone for ConsistencyModelSupportEntry
impl Clone for ConsistencyModelSupportEntry
Source§fn clone(&self) -> ConsistencyModelSupportEntry
fn clone(&self) -> ConsistencyModelSupportEntry
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 ConsistencyModelSupportEntry
impl Debug for ConsistencyModelSupportEntry
Source§impl PartialEq for ConsistencyModelSupportEntry
impl PartialEq for ConsistencyModelSupportEntry
Source§fn eq(&self, other: &ConsistencyModelSupportEntry) -> bool
fn eq(&self, other: &ConsistencyModelSupportEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConsistencyModelSupportEntry
impl StructuralPartialEq for ConsistencyModelSupportEntry
Auto Trait Implementations§
impl Freeze for ConsistencyModelSupportEntry
impl RefUnwindSafe for ConsistencyModelSupportEntry
impl Send for ConsistencyModelSupportEntry
impl Sync for ConsistencyModelSupportEntry
impl Unpin for ConsistencyModelSupportEntry
impl UnsafeUnpin for ConsistencyModelSupportEntry
impl UnwindSafe for ConsistencyModelSupportEntry
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