[][src]Crate aligned_bytes

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

AlignedBox

Aligned heap allocation

AlignedBytes

A continuous fixed-length byte array with a specified alignment.