rsiot/components/shared_tasks/cmp_websocket_client_general/
mod.rs

1//! Запуск общих задач компонентов cmp_websocket*
2
3mod error;
4mod tasks;
5mod websocket_client_general_tasks;
6
7pub use error::Error;
8pub use tasks::ConnectionState;
9pub use websocket_client_general_tasks::WebsocketClientGeneralTasks;
10
11/// Тип Result с заданным типом ошибки
12pub type Result<T> = std::result::Result<T, Error>;