use ;
use Arc;
pub
/// A buffer that several readers share, for [`std::io::Cursor`] to read over.
///
/// `Cursor` needs its contents to be `AsRef<[u8]>`, which `Arc<Vec<u8>>` is not,
/// and going through `Vec` instead would copy the whole file to read its header.
pub );