*_tokenizer: add module doccomment

This commit is contained in:
2025-12-08 13:10:31 +09:00
parent dd023fb486
commit 50091b0f0c
2 changed files with 5 additions and 0 deletions
+3
View File
@@ -1,3 +1,6 @@
//! Module containing a tokenizer named [`ResponseAttributes`] for MPD responses,
//! as well as some helper macros that makes it easier to create response parsers
pub type GenericResponseResult<'a> = Result<GenericResponse<'a>, &'a str>;
pub type GenericResponse<'a> = HashMap<&'a str, GenericResponseValue<'a>>;