buffet 0.3.3

Thread-local buffer pool for the `loona` crate.
Documentation
1
2
3
4
5
6
7
8
use std::rc::Rc;

use luring::IoUringAsync;

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