net-kit 0.1.0

Cross-platform network reachability monitoring with a single Net facade and Tokio runtime support.
Documentation
1
2
3
4
5
6
7
8
//! Internal implementation module.
//!
//! The public API [`crate::net::Net`] only forwards to [`inner_net::InnerNet`];
//! all of the actual runtime and network-monitoring logic is encapsulated in
//! this module, keeping it isolated from the public surface.
pub(crate) mod inner_net;
pub(crate) mod monitor_runtime;
pub(crate) mod monitor_state;