feat: add Debug trait to wrapper types

This commit is contained in:
2025-03-17 11:07:53 +01:00
parent fc9ccca408
commit 99a581e98f

View File

@@ -6,6 +6,7 @@ macro_rules! reexport_const {
( $type_name:ident, $struct_name:ident ) => {
pub const $type_name: usize = unsafe_bindings::$type_name as usize;
#[derive(Debug)]
pub struct $struct_name([u8; $type_name]);
impl Default for $struct_name {