[][src]Struct bm::DynBackend

pub struct DynBackend<Ba: Backend>(pub Ba);

Dynamic backend, where error is stripped.

Trait Implementations

impl<Ba: Backend> Backend for DynBackend<Ba>[src]

type Construct = Ba::Construct

Construct of the backend.

type Error = ()

Error type for DB access.

impl<Ba: ReadBackend> ReadBackend for DynBackend<Ba>[src]

impl<Ba: WriteBackend> WriteBackend for DynBackend<Ba>[src]

impl<Ba: Clone + Backend> Clone for DynBackend<Ba>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<Ba: Default + Backend> Default for DynBackend<Ba>[src]

impl<Ba: Backend> DerefMut for DynBackend<Ba>[src]

impl<Ba: Debug + Backend> Debug for DynBackend<Ba>[src]

impl<Ba: Backend> Deref for DynBackend<Ba>[src]

type Target = Ba

The resulting type after dereferencing.

Auto Trait Implementations

impl<Ba> Sync for DynBackend<Ba> where
    Ba: Sync

impl<Ba> Send for DynBackend<Ba> where
    Ba: Send

impl<Ba> Unpin for DynBackend<Ba> where
    Ba: Unpin

impl<Ba> RefUnwindSafe for DynBackend<Ba> where
    Ba: RefUnwindSafe

impl<Ba> UnwindSafe for DynBackend<Ba> where
    Ba: UnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self