lasersell-sdk 1.1.0

Rust SDK for the LaserSell API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Realtime stream modules.
//!
//! - `client`: websocket transport, send queue, and reconnect handling.
//! - `proto`: protocol messages shared with the stream service.
//! - `session`: higher-level typed event stream with position tracking and
//!   SDK-enforced deadline timers.

/// Websocket connection and command sender.
pub mod client;
/// Stream protocol messages.
pub mod proto;
/// Session wrapper that tracks positions and emits typed events.
pub mod session;
/// TLS certificate pinning for stream connections.
pub(crate) mod tls;