pub trait StatementInput {
    type Item: SqlValue;

    fn to_value(self) -> Either<Vec<Self::Item>, ()>;
    fn to_sql(&self) -> &str;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors