1 unstable release

0.1.0 Mar 27, 2024

#555 in WebAssembly

Download history 120/week @ 2024-03-22 120/week @ 2024-03-29 24/week @ 2024-04-05

264 downloads per month
Used in wasmcloud-provider-wit-bi…

Apache-2.0

8KB
63 lines

This crate exposes derive macros that enable Rust types to derive wrpc_transport::Encode and wrpc_transport::Receive traits.

Example

use wrpc_transport_derive::{Encode, Receive};

#[derive(Trace, PartialEq, Eq, Encode, Receive, Default)]
struct TestStruct {
    one: u32,
}

let mut buffer: Vec<u8> = Vec::new();
// Encode the TestStruct
TestStruct { one: 1 }
    .encode(&mut buffer)
    .await
    .context("failed to perform encode")?;

// Attempt to receive the value
let (received, leftover): (TestStruct, _) =
    Receive::receive_sync(Bytes::from(buffer), &mut empty())
        .await
        .context("failed to receive")?;

// At this point, we expect the received bytes to be exactly the same as what we started with
assert_eq!(received, TestStruct { one: 1 }, "received matches");
assert_eq!(leftover.remaining(), 0, "payload was completely consumed");

NOTE: This macro crate uses tracing, so if you'd like to see the input & output tokens, prepend your command (ex. cargo build) with RUST_LOG=trace.

Dependencies

~24–37MB
~685K SLoC