Converted the function integration to use template metaprogramming instead of macros.
13 lines
352 B
Rust
13 lines
352 B
Rust
//! System that allows Orchid to interact with trait objects of Rust's `Writer`
|
|
//! and with `BufReader`s of `Reader` trait objects
|
|
|
|
mod bindings;
|
|
// mod facade;
|
|
mod flow;
|
|
mod instances;
|
|
mod service;
|
|
|
|
// pub use facade::{io_system, IOStream, IOSystem};
|
|
pub use instances::{wrap_io_error, Sink, Source};
|
|
pub use service::{Service, Stream, StreamTable};
|