Trait odbc_api_helper::executor::statement::StatementInput
source · pub trait StatementInput {
type Item: SqlValue;
fn to_value(self) -> Either<Vec<Self::Item>, ()>;
fn to_sql(&self) -> &str;
fn values(
self
) -> Result<Either<Vec<Box<dyn InputParameter>>, ()>, OdbcHelperError>
where
Self: Sized,
{ ... }
}