Struct rsfbclient_rust::RustFbClient[][src]

pub struct RustFbClient { /* fields omitted */ }

Firebird client implemented in pure rust

Implementations

impl RustFbClient[src]

pub fn new(charset: Charset) -> Self[src]

Construct a new instance of the pure rust client

Trait Implementations

impl FirebirdClientDbOps for RustFbClient[src]

type DbHandle = DbHandle

A database handle

type AttachmentConfig = RustFbClientAttachmentConfig

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 FirebirdClientSqlOps for RustFbClient[src]

type DbHandle = DbHandle

A database handle

type TrHandle = TrHandle

A transaction handle

type StmtHandle = StmtHandleData

A statement handle

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,