momento-functions-bytes 0.13.3

off-guest buffer management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Off-guest buffer management.
//!
//! This crate provides the `Data` type, which is a buffer of bytes that may be
//! stored on the host. This allows you to pass data from a request or response
//! to another request or response without copying it into your function's memory.
//! This can improve performance for large buffers, when you're passing data through.

mod data;
/// Internal module for WIT bindings.
#[doc(hidden)]
pub mod wit;

pub use data::Data;
pub mod encoding;