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
//! Zero-copy buffer utilities

pub struct Buffer {
    // TODO: Implement zero-copy buffer
}

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

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