This commit is contained in:
nora 2022-09-24 20:47:06 +02:00
parent d7844568ca
commit bfd86b1338
8 changed files with 795 additions and 51 deletions

View file

@ -65,6 +65,14 @@ macro_rules! traits {
}
}
)*
pub mod macro_exports {
pub use super::{$($name, $trait),*};
}
pub mod pub_exports {
pub use super::{$($name, $trait),*};
}
};
}
@ -77,4 +85,5 @@ traits!(
struct UpperHexArg: trait UpperHex;
struct UpperExpArg: trait UpperExp;
struct LowerExpArg: trait LowerExp;
struct PointerArg: trait Pointer;
);