trait BindParamHelper: Connection {
    // Required method
    fn handle_inner_pass<'a, 'b: 'a>(
        collector: &mut <Self::Backend as Backend>::BindCollector<'a>,
        lookup: &mut <Self::Backend as TypeMetadata>::MetadataLookup,
        backend: &'b MultiBackend,
        q: &'b impl QueryFragment<MultiBackend>,
    ) -> QueryResult<()>;
}

Required Methods§

source

fn handle_inner_pass<'a, 'b: 'a>( collector: &mut <Self::Backend as Backend>::BindCollector<'a>, lookup: &mut <Self::Backend as TypeMetadata>::MetadataLookup, backend: &'b MultiBackend, q: &'b impl QueryFragment<MultiBackend>, ) -> QueryResult<()>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl BindParamHelper for PgConnection

source§

fn handle_inner_pass<'a, 'b: 'a>( outer_collector: &mut <Self::Backend as Backend>::BindCollector<'a>, lookup: &mut <Self::Backend as TypeMetadata>::MetadataLookup, backend: &'b MultiBackend, q: &'b impl QueryFragment<MultiBackend>, ) -> QueryResult<()>

source§

impl BindParamHelper for SqliteConnection

source§

fn handle_inner_pass<'a, 'b: 'a>( outer_collector: &mut <Self::Backend as Backend>::BindCollector<'a>, lookup: &mut <Self::Backend as TypeMetadata>::MetadataLookup, backend: &'b MultiBackend, q: &'b impl QueryFragment<MultiBackend>, ) -> QueryResult<()>

Implementors§