http-type 5.5.1

A comprehensive Rust library providing essential types for HTTP operations. Includes core HTTP abstractions (request/response, methods, status codes, versions), content types, cookies, WebSocket support, and thread-safe concurrent types (ArcMutex, ArcRwLock). Also provides convenient Option-wrapped primitive types for flexible HTTP handling.
Documentation
1
2
3
4
5
6
7
8
9
10
pub use serde_json::{
    Deserializer as JsonDeserializer, Error as JsonError, Map as JsonMap, Number as JsonNumber,
    Result as JsonResult, Serializer as JsonSerializer,
    StreamDeserializer as JsonStreamDeserializer, Value as JsonValue,
    from_reader as json_from_reader, from_slice as json_from_slice, from_str as json_from_str,
    from_value as json_from_value, json as json_value, to_string as json_to_string,
    to_string_pretty as json_to_string_pretty, to_value as json_to_value, to_vec as json_to_vec,
    to_vec_pretty as json_to_vec_pretty, to_writer as json_to_writer,
    to_writer_pretty as json_to_writer_pretty,
};