1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#![cfg_attr(not(feature = "std"), no_std)]
pub use primitive_enum_derive::{FromU8, PrimitiveFromEnum};
#[cfg(feature = "std")]
use std::{error::Error, fmt};
pub trait PrimitiveFromEnum {
type PrimitiveEnum: TryFrom<u8> + UnsafeFromU8;
fn get_primitive_enum(&self) -> Self::PrimitiveEnum;
fn primitive_name() -> &'static str;
}
pub trait UnsafeFromU8: PartialEq<u8> + Sized {
unsafe fn from_unsafe(_: u8) -> Self;
fn name() -> &'static str;
}
#[cfg_attr(feature = "std", derive(Debug))]
pub struct EnumFromU8Error;
#[cfg(feature = "std")]
impl fmt::Display for EnumFromU8Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "EnumFromU8Error")
}
}
#[cfg(feature = "std")]
impl Error for EnumFromU8Error {}