Skip to main content

ripsync_core/util/
mod.rs

1//! Utility types and helpers.
2//!
3//! Currently provides [`AlignedBuf`] — a page-aligned I/O buffer used by the
4//! portable copy path to avoid extra page-cache copies.
5
6pub mod aligned_buf;
7
8pub use aligned_buf::AlignedBuf;