pub struct Catalog {
pub node_types: HashMap<String, NodeType>,
pub edge_types: HashMap<String, EdgeType>,
pub edge_name_index: HashMap<String, String>,
pub interfaces: HashMap<String, InterfaceType>,
}Fields§
§node_types: HashMap<String, NodeType>§edge_types: HashMap<String, EdgeType>§edge_name_index: HashMap<String, String>Maps normalized lowercase edge name -> EdgeType key (e.g. “knows” -> “Knows”)
interfaces: HashMap<String, InterfaceType>Interface declarations (for Phase 2 polymorphic queries)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Catalog
impl RefUnwindSafe for Catalog
impl Send for Catalog
impl Sync for Catalog
impl Unpin for Catalog
impl UnsafeUnpin for Catalog
impl UnwindSafe for Catalog
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more