edgedb-query 0.2.2

Crate that provide a bunch of traits and structs used by edgedb-query-derive crate
Documentation
1
2
3
4
5
6
7
use crate::EdgeQl;

pub trait Sets {
    fn to_edgeql(&self) -> String;
    fn nested_edgeqls(&self) -> Vec<EdgeQl>;
    fn to_edge_value(&self) -> edgedb_protocol::value::Value;
}