ice-rs 0.3.0

ZeroC Ice for Rust
Documentation
1
2
3
4
5
use tokio::io::{AsyncRead, AsyncWrite};

pub trait Transport: AsyncRead + AsyncWrite + Send {
    fn transport_type(&self) -> String;
}