Struct diesel::query_builder::bind_collector::RawBytesBindCollector [] [src]

pub struct RawBytesBindCollector<DB: Backend + TypeMetadata> {
    pub binds: Vec<(DB::TypeMetadata, Option<Vec<u8>>)>,
}

Fields

binds

Methods

impl<DB: Backend + TypeMetadata> RawBytesBindCollector<DB>

fn new() -> Self

Trait Implementations

impl<DB: Backend + TypeMetadata> BindCollector<DB> for RawBytesBindCollector<DB>

fn push_bound_value<T>(&mut self, bind: Option<Vec<u8>>) where DB: HasSqlType<T>