mfio-rt 0.1.0

mfio based async runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# mfio-rt

## mfio Backed Runtime

This crate aims to provide building blocks for mfio backed asynchronous runtimes. The traits
have the option to not rely on the standard library. This makes the system great for `no_std`
embedded environments or kernel-side code.

`native` feature (depends on `std`) enables native implementations of the runtime through
`NativeRt` structure.

`virt` feature enables a virtual in-memory runtime through `VirtRt` structure.

Custom runtimes may be implemented by implementing `IoBackend`, and any of the runtime
traits, such as `Fs` or `Tcp`.