[][src]Struct rsfbclient_rust::RustFbClient

pub struct RustFbClient { /* fields omitted */ }

Firebird client implemented in rust

Trait Implementations

impl FirebirdClient for RustFbClient[src]

type DbHandle = DbHandle

A database handle

type TrHandle = TrHandle

A transaction handle

type StmtHandle = StmtHandle

A statement handle

type Args = ()

Arguments to instantiate the client

impl FirebirdClientRemoteAttach for RustFbClient[src]

fn attach_database(
    &mut self,
    host: &str,
    port: u16,
    db_name: &str,
    user: &str,
    pass: &str
) -> Result<Self::DbHandle, FbError>
[src]

Attach to a database, creating the connections if necessary.

It will only connect only once, so calling a second time with different host or port will still use the old connection.

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