libpt_net/monitoring/
mod.rs

1//! # monitor your network
2//!
3//! This module offers functions to monitor your network.
4
5//// ATTRIBUTES ////////////////////////////////////////////////////////////////////////////////////
6// we want docs
7#![warn(missing_docs)]
8#![warn(rustdoc::missing_crate_level_docs)]
9////////////////////////////////////////////////////////////////////////////////////////////////////
10// we want Debug everywhere.
11#![warn(missing_debug_implementations)]
12////////////////////////////////////////////////////////////////////////////////////////////////////
13// enable clippy's extra lints, the pedantic version
14#![warn(clippy::pedantic)]
15
16//// IMPORTS ///////////////////////////////////////////////////////////////////////////////////////
17pub mod uptime;
18
19//// CONSTANTS /////////////////////////////////////////////////////////////////////////////////////
20
21//// STATICS ///////////////////////////////////////////////////////////////////////////////////////
22
23//// MACROS ////////////////////////////////////////////////////////////////////////////////////////
24
25//// ENUMS /////////////////////////////////////////////////////////////////////////////////////////
26
27//// STRUCTS ///////////////////////////////////////////////////////////////////////////////////////
28
29//// IMPLEMENTATION ////////////////////////////////////////////////////////////////////////////////
30
31//// PUBLIC FUNCTIONS //////////////////////////////////////////////////////////////////////////////
32
33//// PRIVATE FUNCTIONS /////////////////////////////////////////////////////////////////////////////