wtx 0.44.3

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
/// Wrapper around JSON values
#[derive(Debug, PartialEq)]
#[cfg_attr(feature = "serde_json", derive(serde::Deserialize, serde::Serialize))]
#[cfg_attr(feature = "serde_json", serde(transparent))]
pub struct Json<T: ?Sized>(
  /// Value
  pub T,
);