1
2
3
4
5
use crate::Query;

pub trait Arg {
    fn into_query(self) -> Query;
}