pub trait NodeTypeInfo: Clone + Debug + Display + PartialEq + Serialize + for<'de> Deserialize<'de> {
    // Required methods
    fn struct_query(&self) -> StructQuery<'_>;
    fn are_compatible(&self, other: &Self) -> bool;
}

Required Methods§

source

fn struct_query(&self) -> StructQuery<'_>

source

fn are_compatible(&self, other: &Self) -> bool

Implementors§