fluke-buffet 0.2.0

Buffer management for the `fluke` crate.
Documentation
1
2
3
4
5
6
7
8
use std::rc::Rc;

use fluke_io_uring_async::IoUringAsync;

/// Returns the thread-local IoUringAsync instance
pub fn get_ring() -> Rc<IoUringAsync> {
    fluke_io_uring_async::get_ring()
}