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
, { ... } }

Required Associated Types

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors