macro_rules! load_bytes {
($size:literal, $reader:ident) => { ... };
}Expand description
Macro to load a given number of bytes from a reader into a byte array buffer, to avoid heap allocation.
macro_rules! load_bytes {
($size:literal, $reader:ident) => { ... };
}Macro to load a given number of bytes from a reader into a byte array buffer, to avoid heap allocation.