http-type 4.37.0

A library providing essential types for HTTP, including request bodies, response headers, and other core HTTP abstractions.
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,
};