//! Timex-datalink client library in rust
//! This is a port of the ruby `timex_datalink_client` gem.
/// A trait for packet generation that can be used across different protocols
///
/// This trait defines the core functionality for generating packet bytes
/// that will be transmitted to Timex Datalink devices.
pub use *;
pub use Protocol3;
pub use Protocol4;
pub use NotebookAdapter;