capnweb-client 0.1.0

High-performance Rust client for Cap'n Web RPC protocol with batching and pipelining
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum StubError {
    #[error("Stub error: {0}")]
    Error(String),
}

pub struct Capability<T> {
    _phantom: std::marker::PhantomData<T>,
}