bridge-core 0.1.0

Core utilities for BridgeRust engines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Streaming I/O utilities

pub struct StreamReader {
    // TODO: Implement StreamReader
}

impl StreamReader {
    pub fn new() -> Self {
        Self {}
    }
}

impl Default for StreamReader {
    fn default() -> Self {
        Self::new()
    }
}