[][src]Struct rsfbclient::Connection

pub struct Connection { /* fields omitted */ }

Implementations

impl Connection[src]

pub fn open(
    host: &str,
    port: u16,
    db_name: &str,
    user: &str,
    pass: &str
) -> Result<Connection, FbError>
[src]

Open a new connection to the remote database

pub fn open_local(db_name: &str) -> Result<Connection, FbError>[src]

Open a new connection to the local database

pub fn create_local(db_name: &str) -> Result<(), FbError>[src]

Create a new local database

pub fn drop_database(self) -> Result<(), FbError>[src]

Drop the current database

pub fn recreate_local(db_name: &str) -> Result<(), FbError>[src]

pub fn close(self) -> Result<(), FbError>[src]

Close the current connection

pub fn transaction(&self) -> Result<Transaction, FbError>[src]

Starts a new transaction

Trait Implementations

impl Drop for Connection[src]

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