sparseio 0.0.1

A library for coordinating sparse, out-of-order byte-range fetching and materialization of large objects.
Documentation
1
2
3
4
5
6
7
8
//! Implementations of the [`crate::Reader`], and [`crate::Writer`] for dealing with common use cases. Usages of
//! such sources are shown in the examples, and they can be used as building blocks for more complex custom sources,
//! references for building your own source, or as-is.

#[cfg(feature = "file")]
pub mod file;
#[cfg(feature = "http")]
pub mod http;