Expose raw Soketto interface via ws_client for more control where needed (eg in tests)

This commit is contained in:
James Wilson
2021-07-26 11:31:40 +01:00
parent cf0e424803
commit e043de8ddb
8 changed files with 354 additions and 282 deletions
+10
View File
@@ -0,0 +1,10 @@
/// Functionality to establish a connection
mod connect;
/// The channel based send interface
mod sender;
/// The channel based receive interface
mod receiver;
pub use connect::{ connect, ConnectError, Connection, RawSender, RawReceiver };
pub use sender::{ Sender, SentMessage, SendError };
pub use receiver::{ Receiver, RecvMessage, RecvError };