Struct mongodb::options::ReadConcern[][src]

#[non_exhaustive]pub struct ReadConcern {
    pub level: ReadConcernLevel,
}

Specifies the consistency and isolation properties of read operations from replica sets and replica set shards.

See the documentation here for more information about read concerns.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
level: ReadConcernLevel

The level of the read concern.

Implementations

impl ReadConcern[src]

pub fn majority() -> Self[src]

Creates a read concern with level "majority". See the specific documentation for this read concern level here.

pub fn local() -> Self[src]

Creates a read concern with level "local". See the specific documentation for this read concern level here.

pub fn linearizable() -> Self[src]

Creates a read concern with level "linearizable". See the specific documentation for this read concern level here.

pub fn available() -> Self[src]

Creates a read concern with level "available". See the specific documentation for this read concern level here.

pub fn custom(level: String) -> Self[src]

Creates a read concern with a custom read concern level. This is present to provide forwards compatibility with any future read concerns which may be added to new versions of MongoDB.

Trait Implementations

impl Clone for ReadConcern[src]

impl Debug for ReadConcern[src]

impl<'de> Deserialize<'de> for ReadConcern[src]

impl From<ReadConcernLevel> for ReadConcern[src]

impl PartialEq<ReadConcern> for ReadConcern[src]

impl Serialize for ReadConcern[src]

impl StructuralPartialEq for ReadConcern[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,