ethox 0.0.2

A standalone network stack for user-space networking and unikernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// We only duplicate the standard library.
#![allow(missing_docs)]
mod phantom_vec;
mod phantom_btree;

pub mod collections {
    pub use super::phantom_btree::BTreeMap;

    pub mod btree_map {
        pub use super::super::phantom_btree::*;
    }
}

pub mod vec {
    pub use super::phantom_vec::Vec;
}