More useful conversions #68

Merged
muellerr merged 2 commits from missing-ecss-enum-conversion into main 2024-03-11 14:57:52 +01:00
Showing only changes of commit bd1927c5c2 - Show all commits

View File

@ -360,17 +360,17 @@ impl<TYPE: Debug + Copy + Clone + PartialEq + Eq + ToBeBytes + Into<u64>> EcssEn
{
}
impl<T: Copy + Into<u64>> From<T> for GenericEcssEnumWrapper<T> {
fn from(value: T) -> Self {
Self::new(value)
}
}
macro_rules! generic_ecss_enum_typedefs_and_from_impls {
($($ty:ty => $Enum:ident),*) => {
$(
pub type $Enum = GenericEcssEnumWrapper<$ty>;
impl From<$ty> for $Enum {
fn from(value: $ty) -> Self {
Self::new(value)
}
}
impl From<$Enum> for $ty {
fn from(value: $Enum) -> Self {
value.value_typed()