pub trait Transport:
'static
+ Stream<Error = Error>
+ Sink<SinkError = Error> {
// Provided methods
fn tick(&mut self) { ... }
fn cancel(&mut self) -> Result<()> { ... }
}
Expand description
Additional transport details relevant to streaming, pipelined protocols.
All methods added in this trait have default implementations.