mirror of
https://github.com/arampoire/nut-rs.git
synced 2025-11-30 16:20:25 -05:00
23 lines
441 B
Rust
23 lines
441 B
Rust
#![deny(missing_docs)]
|
|
|
|
//! # nut-client
|
|
//!
|
|
//! The `nut-client` crate provides a network client implementation
|
|
//! for Network UPS Tools (NUT) servers.
|
|
|
|
pub use config::*;
|
|
pub use error::*;
|
|
pub use var::*;
|
|
|
|
/// Blocking client implementation for NUT.
|
|
pub mod blocking;
|
|
/// Async client implementation for NUT, using Tokio.
|
|
#[cfg(feature = "async")]
|
|
pub mod tokio;
|
|
|
|
mod cmd;
|
|
mod config;
|
|
mod error;
|
|
#[cfg(feature = "ssl")]
|
|
mod ssl;
|
|
mod var;
|