[][src]Struct mongodb::pool::ConnectionPool

pub struct ConnectionPool {
    pub host: Host,
    // some fields omitted
}

Handles threaded connections to a MongoDB server.

Fields

host: Host

The connection host.

Methods

impl ConnectionPool[src]

pub fn new(host: Host, connector: StreamConnector) -> ConnectionPool[src]

Returns a connection pool with a default size.

pub fn with_size(
    host: Host,
    connector: StreamConnector,
    size: usize
) -> ConnectionPool
[src]

Returns a connection pool with a specified capped size.

pub fn set_size(&self, size: usize) -> Result<()>[src]

Sets the maximum number of open connections.

pub fn clear(&self)[src]

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

Attempts to acquire a connected socket. If none are available and the pool has not reached its maximum size, a new socket will connect. Otherwise, the function will block until a socket is returned to the pool.

Trait Implementations

impl Clone for ConnectionPool[src]

impl Debug for ConnectionPool[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self