workflow-websocket 0.19.0

WebSocket crate (client and server) providing an async Rust API that functions uniformly in native and in browser (WASM32) environments. This crate allows you to develop WebSocket-driven data exchange that function uniformly in web and desktop applications.
Documentation
1
2
3
4
use crate::client::error::Error;

/// Result type alias for client-side WebSocket operations.
pub type Result<T> = std::result::Result<T, Error>;