macro_rules! define_bytes {
{ $(#[$meta:meta])* pub struct $name:ident([u8 ; $n:expr]); } => { ... };
}
Expand description
Define a wrapper type around a byte array of fixed length.
(Internally, it uses a CtByteArray
,
so it’s safe to derive Ord, Eq, etc.)