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
//! Option handling module.
//!
//! Provides [`OptionHandler`] -- a centralized option management struct with
//! built-in C++ aria2 compatible defaults, `.aria2rc` config file parsing,
//! CLI argument override support, and conversion to [`DownloadOptions`].

pub mod option_handler;

pub use crate::config::option::OptionValue;
pub use option_handler::OptionHandler;