rorm 0.10.0

A asynchronous declarative ORM written in pure rust.
Documentation
use crate::conditions::collections::CollectionOperator;
use crate::conditions::{BinaryOperator, Condition, Value};
use crate::internal::query_context::flat_conditions::FlatCondition;
use crate::internal::query_context::ConditionBuilder;

/// An "IN" expression
///
/// The implementation will definitely change,
/// but it's better to have some form of "IN" than none.
#[derive(Clone, Debug)]
pub struct In<A, B> {
    /// SQL operator to use
    pub operator: InOperator,
    /// The left side of the operator
    pub fst_arg: A,
    /// The mulidple values on the operator's right side
    pub snd_arg: Vec<B>,
}

/// The operator of an "IN" expression
#[derive(Copy, Clone, Debug)]
pub enum InOperator {
    /// Representation of "{} IN ({}, ...)" in SQL
    In,
    /// Representation of "{} NOT IN ({}, ...)" in SQL
    NotIn,
}

impl<'a, A, B> Condition<'a> for In<A, B>
where
    A: Condition<'a>,
    B: Condition<'a>,
{
    fn build(&self, mut builder: ConditionBuilder<'_, 'a>) {
        let bool_fallback;
        let collection_operator;
        let binary_operator;
        match self.operator {
            InOperator::In => {
                bool_fallback = false;
                collection_operator = CollectionOperator::Or;
                binary_operator = BinaryOperator::Equals;
            }
            InOperator::NotIn => {
                bool_fallback = true;
                collection_operator = CollectionOperator::And;
                binary_operator = BinaryOperator::NotEquals;
            }
        }

        if self.snd_arg.is_empty() {
            Value::Bool(bool_fallback).build(builder);
        } else {
            builder.push_condition(FlatCondition::StartCollection(collection_operator));
            for snd_arg in self.snd_arg.iter() {
                builder.push_condition(FlatCondition::BinaryCondition(binary_operator));
                self.fst_arg.build(builder.reborrow());
                snd_arg.build(builder.reborrow());
            }
            builder.push_condition(FlatCondition::EndCollection);
        }
    }
}