chore(doc): Add a link to the MIO utils module summary

This commit is contained in:
Philipp Dresselmann
2024-12-13 18:26:09 +01:00
parent 4725a2d628
commit 51d4dede15
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ pub mod io;
pub mod length_prefix_encoding;
/// Memory manipulation and allocation utilities.
pub mod mem;
/// MIO integration utilities.
/// [MIO (Metal I/O)](https://docs.rs/crate/mio/) integration utilities.
pub mod mio;
/// Extended Option type functionality.
pub mod option;

View File

@@ -6,7 +6,7 @@ use crate::{
result::OkExt,
};
/// Module containing I/O interest flags for Unix operations
/// Module containing I/O interest flags for Unix operations (see also: [mio::Interest])
pub mod interest {
use mio::Interest;