enum_kinds_traits/
lib.rs

1#![no_std]
2
3pub trait ToKind {
4    type Kind;
5
6    fn kind(&self) -> Self::Kind;
7}