volo 0.12.3

Volo is a high-performance and strong-extensibility Rust RPC framework that helps developers build microservices.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod addr;
pub mod config;
pub mod conn;
mod helpers;

pub use self::{
    addr::Address,
    conn::{Listener, ReadHalf, Stream, WriteHalf},
    helpers::ShmipcHelper,
};