aria2_core/segment/mod.rs
1pub mod bitfield;
2pub mod pieced_segment;
3// Re-export the segment submodule with the same name as parent module
4// This is intentional for API consistency
5#[allow(clippy::module_inception)]
6pub mod segment;
7
8pub use bitfield::Bitfield;
9pub use pieced_segment::PiecedSegment;
10pub use segment::Segment;