Sign in
apache
/
iggy
/
refs/heads/aws-test
/
.
/
sdk
/
src
/
binary
/
binary_client.rs
blob: ce024c51bbc8820749ccb574989bf788c4720161 [
file
] [
log
] [
blame
]
use
crate
::
binary
::
BinaryTransport
;
use
crate
::
client
::
Client
;
use
async_trait
::
async_trait
;
/// A client that can send and receive binary messages.
#[
async_trait
]
pub
trait
BinaryClient
:
BinaryTransport
+
Client
{}