//! Rust implementation of SRCDS RCON Protocol.
//!
//! Reference: https://developer.valvesoftware.com/wiki/Source_RCON_Protocol
//!
//! Example implementations:
//! - Palworld `Info` command execution example: [palworld.rs](https://github.com/tukeJonny/rcon-rs/blob/master/examples/palworld.rs)
extern crate anyhow;
extern crate num_derive;
/// This module provides RCON client traits.
/// This module provides error types caused by RCON client.