[][src]Struct phil_core::cluster::ClusterOptions

pub struct ClusterOptions {
    pub topology: Topology,
    pub version_id: String,
    pub paths: Vec<PathBuf>,
    pub tls: Option<TlsOptions>,
    pub auth: Option<Credential>,
    // some fields omitted
}

Fields

topology: Topologyversion_id: Stringpaths: Vec<PathBuf>tls: Option<TlsOptions>auth: Option<Credential>

Implementations

impl ClusterOptions[src]

pub fn builder() -> ClusterOptionsBuilder<((), (), (), (), (), (), (), (), ())>[src]

Create a builder for building ClusterOptions. On the builder, call .topology(...), .version_id(...), .paths(...)(optional), .tls(...)(optional), .auth(...)(optional), .extra_mongod_args(...)(optional), .verbose(...)(optional), .deprecated_tls_options(...)(optional), .save_logs(...)(optional) to set the values of the fields (they accept Into values). Finally, call .build() to create the instance of ClusterOptions.

Trait Implementations

impl Clone for ClusterOptions[src]

impl Debug for ClusterOptions[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> 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>,