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