[−][src]Struct mongodb_cwal::r2d2_mongo::MongoConnectionManager
A basic r2d2 connection manager for this driver.
- returns a Database object matching the provided database name, not a Client
- takes a parsed connection string and client options
Implementations
impl MongoConnectionManager
[src]
pub fn new<S, CO>(
connection_str: ConnectionString,
db_name: S,
client_options: CO
) -> Self where
S: Into<String>,
CO: Into<Option<ClientOptions>>,
[src]
connection_str: ConnectionString,
db_name: S,
client_options: CO
) -> Self where
S: Into<String>,
CO: Into<Option<ClientOptions>>,
Trait Implementations
impl Debug for MongoConnectionManager
[src]
impl ManageConnection for MongoConnectionManager
[src]
type Connection = Database
The connection type this manager deals with.
type Error = Error
The error type returned by Connection
s.
fn connect(&self) -> Result<Self::Connection, Self::Error>
[src]
fn is_valid(&self, conn: &mut Self::Connection) -> Result<(), Self::Error>
[src]
fn has_broken(&self, _: &mut Self::Connection) -> bool
[src]
Auto Trait Implementations
impl RefUnwindSafe for MongoConnectionManager
impl Send for MongoConnectionManager
impl Sync for MongoConnectionManager
impl Unpin for MongoConnectionManager
impl UnwindSafe for MongoConnectionManager
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,