macro_rules! packed_read {
($val:ident.$field:ident) => { ... };
(($expr:expr).$field:ident) => { ... };
}Expand description
The type must be Copy. Creates an aligned copy of a field on the stack for easy reading.
macro_rules! packed_read {
($val:ident.$field:ident) => { ... };
(($expr:expr).$field:ident) => { ... };
}The type must be Copy. Creates an aligned copy of a field on the stack for easy reading.