konst_kernel/polymorphism.rs
1pub mod kinds {
2
3 /// Marker for user-defined types that can be converted into const iterators
4 pub enum IsIntoIterKind {}
5
6 /// Marker for const iterators
7 pub enum IsIteratorKind {}
8
9 /// Marker for references.
10 pub enum IsRefKind {}
11
12 /// Marker for non-standard library types.
13 pub enum IsNotStdKind {}
14
15 /// Marker for standard library types.
16 pub enum IsStdKind {}
17}