oxide_core 0.4.0

Rust engine primitives for Oxide (store, snapshot streams, error model, optional persistence).
Documentation
1
2
3
4
5
6
7
8
9
10
//! FFI-facing helpers.
//!
//! This module contains small utility types intended for consumption by other
//! runtimes and bindings layers.

// Maintenance: keep these helpers generic and dependency-light so they can be
// safely used by multiple binding strategies without pulling in app concepts.
mod stream;

pub use stream::watch_receiver_to_stream;