wtx 0.43.1

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
11
use crate::codec::protocol::JsonRpcResponseError;
use alloc::boxed::Box;

/// Decode/EnCode error
#[derive(Debug)]
pub enum CodecError {
  /// JSON-RPC response error
  JsonRpcDecoderErr(Box<JsonRpcResponseError>),
  /// `wtx` can not perform this operation due to known limitations.
  UnsupportedOperation,
}