serde_teamspeak_querystring/lib.rs
1//! # Serde-teamspeak-querystring
2//! serde-teamspeak-querystring is a deserializer for teamspeak query strings.
3//!
4//! To see what's supported and what's not, please take a look the tests in the main repo.
5//!
6
7mod de;
8mod error;
9
10pub use de::{from_bytes, from_str, escape};
11pub use error::{Error, ErrorKind};