Workflow RPC (wRPC) framework based on the workflow-websocket
crate offering native & in-browser (WASM32) clients and a
native server (based on tokio & tungstenite). wRPC
supports custom Borsh and JSON protocols with use of
generics for RPC method declarations.
//!//! Result enum encapsulating [`super::error::Error`]
//! enum common to client and server
//!pubtypeResult<T>=std::result::Result<T, super::error::Error>;// use super::messages::borsh::ServerError;
pubtypeServerResult<T>=std::result::Result<T, super::error::ServerError>;