wtx 0.45.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
/// A Structured value that holds the parameter values to be used during the invocation of the
/// method.
#[cfg_attr(feature = "serde", derive(serde::Deserialize))]
#[derive(Debug)]
pub struct JsonRpcNotificationParams<R> {
  /// Payload
  pub result: R,
  /// Identifier returned by the counterpart
  pub subscription: u64,
}