Expand description
A continuous fixed-length byte array with a specified alignment.
§Example
use aligned_bytes::AlignedBytes;
let mut bytes = AlignedBytes::new_zeroed(1024, 8);
let buf: &mut [u8] = &mut *bytes;
Modules§
- stack
- Aligned wrappers
Structs§
- Aligned
Box - Aligned heap allocation
- Aligned
Bytes - A continuous fixed-length byte array with a specified alignment.