chunkify 0.6.49

A simple and efficient chunking library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// HTTP header name for file ID in chunking operations.
pub const CHUNKIFY_FILE_ID_HEADER: &str = "x-file-id";

/// HTTP header name for chunk index in chunking operations.
pub const CHUNKIFY_CHUNK_INDEX_HEADER: &str = "x-chunk-index";

/// HTTP header name for total chunks count in chunking operations.
pub const CHUNKIFY_TOTAL_CHUNKS_HEADER: &str = "x-total-chunks";

/// HTTP header name for original file name in chunking operations.
pub const CHUNKIFY_FILE_NAME_HEADER: &str = "x-file-name";