(self)
| 929 | enum ErrKind { |
| 930 | Kernel, |
| 931 | Compile, |
| 932 | } |
| 933 | |
| 934 | impl ErrKind { |
| 935 | fn tag(self) -> u8 { |
| 936 | match self { |
| 937 | ErrKind::Kernel => KERNEL_EXCEPTION_TAG, |
| 938 | ErrKind::Compile => COMPILE_ERROR_TAG, |
| 939 | } |
no outgoing calls
no test coverage detected