mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
31 lines
478 B
Rust
31 lines
478 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() {}
|