Struct rsfbclient_native::NativeFbClient[][src]

pub struct NativeFbClient<T: LinkageMarker> { /* fields omitted */ }

Client that wraps the native fbclient library

Trait Implementations

impl<T: LinkageMarker> FirebirdClientDbOps for NativeFbClient<T>[src]

type DbHandle = isc_db_handle

A database handle

type AttachmentConfig = NativeFbAttachmentConfig

Configuration details for attaching to the database. A user of an implementation of this trait can configure attachment details (database name, user name, etcetera) and then pass this configuration to the implementation via this type when a new attachment is requested Read more

impl<T: LinkageMarker> FirebirdClientSqlOps for NativeFbClient<T>[src]

type DbHandle = isc_db_handle

A database handle

type TrHandle = isc_tr_handle

A transaction handle

type StmtHandle = StmtHandleData

A statement handle

Auto Trait Implementations

impl<T> !RefUnwindSafe for NativeFbClient<T>

impl<T> Send for NativeFbClient<T>

impl<T> Sync for NativeFbClient<T> where
    <T as LinkageMarker>::L: Sync

impl<T> Unpin for NativeFbClient<T> where
    <T as LinkageMarker>::L: Unpin

impl<T> !UnwindSafe for NativeFbClient<T>

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<Hdl, A> FirebirdClient for A where
    A: FirebirdClientDbOps<DbHandle = Hdl> + FirebirdClientSqlOps<DbHandle = Hdl>,
    Hdl: Send
[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.