rlmesh-grpc 0.1.0-rc.1

Internal RLMesh crate (unstable Rust API): gRPC clients, servers, and wire helpers.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Client state for gRPC endpoint clients.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ClientState {
    /// Connected but handshake not completed.
    Connected,
    /// Connected and handshake completed, ready to use.
    Ready,
    /// Closed.
    Closed,
}