vlc_rc/lib.rs
1//! A library used to interact with a VLC player's TCP interface.
2//!
3//! Primary type:
4//!
5//! * [`Client`] - Represents a connection to VLC's TCP interface.
6
7mod error;
8
9pub mod client;
10
11pub use client::Client;
12pub use error::Error;
13
14/// A crate-level result that may be returned when working with VLC.
15pub type Result<T> = std::result::Result<T, Error>;