tailsurf 0.12.2

Rust SDK for tail.surf live transcript streams
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Language-neutral TSF REST, SSE, and v1 WebSocket models.

/// Largest integer TSF accepts where JavaScript interoperability requires exact values.
pub const MAX_SAFE_INTEGER_U64: u64 = 9_007_199_254_740_991;

/// Transport-neutral stream read options.
pub mod read;
/// JSON request and response models for `/api/v1` REST endpoints.
pub mod rest;
/// WebSocket write options and binary frame codec.
pub mod ws;