aria2-core 0.2.2

High-performance download engine core: multi-protocol segmented downloads, rate limiting, config management, session persistence, and BitTorrent seeding
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod bitfield;
pub mod pieced_segment;
// Re-export the segment submodule with the same name as parent module
// This is intentional for API consistency
#[allow(clippy::module_inception)]
pub mod segment;

pub use bitfield::Bitfield;
pub use pieced_segment::PiecedSegment;
pub use segment::Segment;