[][src]Struct mongodb_cwal::topology::Topology

pub struct Topology {
    pub config: ConnectionString,
    pub description: Arc<RwLock<TopologyDescription>>,
}

Holds status and connection information about a server set.

Fields

config: ConnectionString

The initial connection configuration.

description: Arc<RwLock<TopologyDescription>>

Monitored topology information.

Methods

impl Topology[src]

pub fn new(
    config: ConnectionString,
    description: Option<TopologyDescription>,
    connector: StreamConnector
) -> Result<Topology>
[src]

Returns a new topology with the given configuration and description.

pub fn acquire_stream(
    &self,
    client: Client,
    read_preference: ReadPreference
) -> Result<(PooledStream, bool, bool)>
[src]

Returns a server stream for read operations.

pub fn acquire_write_stream(&self, client: Client) -> Result<PooledStream>[src]

Returns a server stream for write operations.

Trait Implementations

impl Clone for Topology[src]

impl Debug for Topology[src]

Auto Trait Implementations

Blanket Implementations

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

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

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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