reth_downloaders/bodies/
mod.rs

1/// A naive concurrent downloader.
2#[expect(clippy::module_inception)]
3pub mod bodies;
4
5/// A body downloader that does nothing. Useful to build unwind-only pipelines.
6pub mod noop;
7
8/// A downloader implementation that spawns a downloader to a task
9pub mod task;
10
11mod queue;
12mod request;
13
14#[cfg(any(test, feature = "test-utils"))]
15pub mod test_utils;