ruststream 0.6.1

Async messaging framework for Rust: broker-agnostic traits, router, codecs, and a conformance harness for broker authors.
Documentation
1
2
3
4
5
6
7
8
use ruststream::subscriber;

// A `&[u8]` parameter without the `raw` flag is ambiguous between a batch of `u8` values and the
// undecoded payload; the error points at both spellings.
#[subscriber("frames")]
async fn handle(frame: &[u8]) {}

fn main() {}