[][src]Struct rsfbclient::FirebirdConnectionManager

pub struct FirebirdConnectionManager<C: FirebirdClient> { /* fields omitted */ }

Implementations

impl<C> FirebirdConnectionManager<C> where
    C: FirebirdClient
[src]

pub fn new(conn_builder: ConnectionBuilder<C>) -> Self[src]

Trait Implementations

impl<C> ManageConnection for FirebirdConnectionManager<C> where
    C: FirebirdClient + FirebirdClientRemoteAttach + 'static, 
[src]

type Connection = Connection<C>

The connection type this manager deals with.

type Error = FbError

The error type returned by Connections.

Auto Trait Implementations

impl<C> !RefUnwindSafe for FirebirdConnectionManager<C>

impl<C> Send for FirebirdConnectionManager<C> where
    <C as FirebirdClient>::Args: Send

impl<C> Sync for FirebirdConnectionManager<C>

impl<C> Unpin for FirebirdConnectionManager<C> where
    C: Unpin,
    <C as FirebirdClient>::Args: Unpin

impl<C> !UnwindSafe for FirebirdConnectionManager<C>

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, U> Into<U> for T where
    U: From<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.