mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			479 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			479 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| use std::fmt::Debug;
 | |
| 
 | |
| pub struct EventStream<S> {
 | |
|     stream: S,
 | |
| }
 | |
| 
 | |
| impl<S: Debug> EventStream<S> {
 | |
|     fn into_stream(self) -> impl Debug {
 | |
|         unimplemented!()
 | |
|     }
 | |
| 
 | |
|     pub fn into_reader(self) -> impl Debug {
 | |
|         ReaderStream::from(self.into_stream())
 | |
|     }
 | |
| }
 | |
| 
 | |
| #[derive(Debug)]
 | |
| pub struct ReaderStream<S> {
 | |
|     stream: S,
 | |
| }
 | |
| 
 | |
| impl<S> From<S> for ReaderStream<S> {
 | |
|     fn from(stream: S) -> Self {
 | |
|         ReaderStream { stream }
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
