```struct Inner {..} enum Entry { Root { su...
# development
w
Copy code
struct Inner {..}

enum Entry {
  Root {
    subject_type: TypeId,
    selector: TypeConstraint,
  },
  Inner(Inner)
  ...
}