aligned_buffer/
lib.rs

1mod raw;
2mod shared;
3mod unique;
4
5pub mod alloc;
6pub mod cap;
7
8#[cfg(feature = "bytes")]
9mod bytes;
10
11#[cfg(feature = "rkyv")]
12pub mod rkyv;
13
14/// The default alignment for buffers.
15pub const DEFAULT_BUFFER_ALIGNMENT: usize = 64;
16
17pub use shared::SharedAlignedBuffer;
18pub use unique::{TryReserveError, UniqueAlignedBuffer};