wtx 0.28.0

A collection of different transport implementations and related tools focused primarily on web technologies.
1
2
3
4
5
6
7
8
9
10
11
use crate::data_transformation::format::JsonRpcResponseError;
use alloc::boxed::Box;

/// Client API Framework Error
#[derive(Debug)]
pub enum DataTransformationError {
  /// JSON-RPC response error
  JsonRpcResultErr(Box<JsonRpcResponseError>),
  /// `wtx` can not perform this operation due to known limitations.
  UnsupportedOperation,
}