mapping/lib.rs
1// Copyright 2026 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub mod blob;
6pub mod extents;
7pub mod reader;
8
9pub use blob::Blob;
10pub use extents::{Extent, Extents, ExtentsIterator};
11
12pub const BLOCK_SIZE: u64 = 4096;