pub trait SqlPropertyBuffer<T = ()>: Send + 'staticwhere
    T: 'static,
{ fn bind_column(
        &mut self,
        column: &SqlColumn,
        statement: &mut SqlStatement
    ) -> SqlResult; fn get_data(
        &mut self,
        column: &SqlColumn,
        statement: &mut SqlStatement
    ) -> SqlPoll; fn bind_parameter(
        &mut self,
        parameter_number: SQLUSMALLINT,
        input_output_type: InputOutput,
        parameter_type: Option<SqlDataType>,
        statement: &mut SqlStatement
    ) -> SqlResult; fn read_property(&mut self, value: &T) -> SqlResult; fn write_property(&mut self, value: &mut T) -> SqlResult; }

Required Methods§

Trait Implementations§

Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Implementors§