Files
h2/src/proto/ready.rs
Carl Lerche fa21970656 Much work
2017-06-23 13:13:50 -07:00

6 lines
117 B
Rust

use futures::{Sink, Poll};
pub trait ReadySink: Sink {
fn poll_ready(&mut self) -> Poll<(), Self::SinkError>;
}