Struct rsfbclient::SimpleConnection[][src]

pub struct SimpleConnection { /* fields omitted */ }

A connection API without client types

Implementations

impl SimpleConnection[src]

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

Drop the current database

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

Close the current connection.

pub fn with_transaction<T, F>(&mut self, closure: F) -> Result<T, FbError> where
    F: FnOnce(&mut SimpleTransaction<'_>) -> Result<T, FbError>, 
[src]

Run a closure with a transaction, if the closure returns an error the transaction will rollback, else it will be committed

Trait Implementations

impl Execute for SimpleConnection[src]

impl From<Connection<NativeFbClient<DynLink>>> for SimpleConnection[src]

impl From<Connection<NativeFbClient<DynLoad>>> for SimpleConnection[src]

impl From<Connection<RustFbClient>> for SimpleConnection[src]

impl Queryable for SimpleConnection[src]

impl TryFrom<SimpleConnection> for Connection<NativeFbClient<DynLink>>[src]

type Error = FbError

The type returned in the event of a conversion error.

impl TryFrom<SimpleConnection> for Connection<NativeFbClient<DynLoad>>[src]

type Error = FbError

The type returned in the event of a conversion error.

impl TryFrom<SimpleConnection> for Connection<RustFbClient>[src]

type Error = FbError

The type returned in the event of a conversion error.

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