1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Implementation of the client protocol for [MPD]. Supports binary responses and command lists,
//! provided they are initiated with the `command_list_ok_begin` command.
//!
//! Consists of a parser for MPD responses ([`parser`]), and an implementation of [Tokio]'s
//! [codec][tokio-codec] subsystem to facilitate asynchronous clients ([`codec`]).
//!
//! Also provided are utilities for constructing [commands] and [filter expressions], as a special
//! case of argument to commands.
//!
//! [MPD]: https://musicpd.org
//! [Tokio]: https://tokio.rs
//! [tokio-codec]: https://docs.rs/tokio-util/0.2.0/tokio_util/codec/index.html
//! [`codec`]: codec/index.html
//! [commands]: command/index.html
//! [filter expressions]: filter/index.html
pub use ;
pub use ;
pub use Filter;
pub use ;
pub use Response;