[][src]Struct odbc_iter::Binder

pub struct Binder<'h, 't, S> { /* fields omitted */ }

Controls binding of parametrized query values.

Methods

impl<'h, 't, S> Binder<'h, 't, S>[src]

pub fn bind<'new_t, T>(
    self,
    value: &'new_t T
) -> Result<Binder<'h, 'new_t, S>, BindError> where
    T: OdbcType<'new_t> + Debug,
    't: 'new_t, 
[src]

Trait Implementations

impl<'_, '_, S> Debug for Binder<'_, '_, S>[src]

impl<'h, 't, S> From<Statement<'h, 'h, S, NoResult>> for Binder<'h, 'h, S>[src]

Auto Trait Implementations

impl<'h, 't, S> RefUnwindSafe for Binder<'h, 't, S> where
    S: RefUnwindSafe

impl<'h, 't, S> !Send for Binder<'h, 't, S>

impl<'h, 't, S> !Sync for Binder<'h, 't, S>

impl<'h, 't, S> Unpin for Binder<'h, 't, S> where
    S: Unpin

impl<'h, 't, S> UnwindSafe for Binder<'h, 't, S> where
    S: UnwindSafe

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> ToErrorNoContext<T> for 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<E, C> WrapContext<C> for E[src]

type ContextError = ErrorContext<E, C>