Skip to main content

partiql_eval/eval/graph/
string_graph.rs

1use crate::eval::graph::types::GraphTypes;
2
3#[derive(Debug, Clone, Eq, PartialEq, Hash)]
4pub struct StringGraphTypes;
5
6impl GraphTypes for StringGraphTypes {
7    type Binder = String;
8    type Label = String;
9    type NodeId = ();
10    type EdgeId = ();
11}