rpc-rs 0.1.1

A blazingly fast, lightweight, and type-safe RPC/IPC framework for Rust and Web/Tauri-based applications, based on `specta`.
Documentation
1
2
3
4
//! Utility types.

/// A type that represents a shortened form of `Send + Sync + 'static`.
pub trait TripleS = Send + Sync + 'static;