[][src]Struct odbc_safe::Connected

pub struct Connected<'env, AC: AutocommitMode>(_, _);

An HDbc with the additional invariant of being 'connected'.

Methods

impl<'env, AC: AutocommitMode> Connected<'env, AC>[src]

pub fn into_hdbc(self) -> HDbc<'env>[src]

Releases inner Connection Handle without calling disconnect.

Trait Implementations

impl<'env, AC: AutocommitMode> HDbcWrapper<'env> for Connected<'env, AC>[src]

type Handle = Connected<'env, AC>

Type to a handle, which also must implement this trait.

impl<'env, AC: AutocommitMode> Drop for Connected<'env, AC>[src]

impl<'env, AC: Debug + AutocommitMode> Debug for Connected<'env, AC>[src]

impl<'env, AC: AutocommitMode> Deref for Connected<'env, AC>[src]

type Target = HDbc<'env>

The resulting type after dereferencing.

impl<'env, AC: AutocommitMode> DerefMut for Connected<'env, AC>[src]

Auto Trait Implementations

impl<'env, AC> !Send for Connected<'env, AC>

impl<'env, AC> !Sync for Connected<'env, AC>

impl<'env, AC> Unpin for Connected<'env, AC> where
    AC: Unpin

impl<'env, AC> UnwindSafe for Connected<'env, AC> where
    AC: UnwindSafe

impl<'env, AC> RefUnwindSafe for Connected<'env, AC> where
    AC: RefUnwindSafe

Blanket Implementations

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> 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]