1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use super::listener::{SocketAddr, Listener};

use std::io;
use std::task::{Poll, Context};
use std::pin::Pin;

use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};


/// Always Panics
pub struct PanicListener;

impl PanicListener {
	pub fn new() -> Self {
		Self
	}
}

impl Listener for PanicListener {
	type Stream = PanicStream;

	fn poll_accept(
		&self,
		_cx: &mut Context<'_>
	) -> Poll<io::Result<(Self::Stream, SocketAddr)>> {
		todo!("poll_accept")
	}
}

pub struct PanicStream;

impl AsyncRead for PanicStream {
	fn poll_read(
		self: Pin<&mut Self>,
		_cx: &mut Context<'_>,
		_buf: &mut ReadBuf<'_>
	) -> Poll<io::Result<()>> {
		todo!("poll_read")
	}
}

impl AsyncWrite for PanicStream {
	fn poll_write(
		self: Pin<&mut Self>,
		_cx: &mut Context<'_>,
		_buf: &[u8]
	) -> Poll<io::Result<usize>> {
		todo!("poll_write")
	}

	fn poll_flush(
		self: Pin<&mut Self>,
		_cx: &mut Context<'_>
	) -> Poll<io::Result<()>> {
		todo!("poll_flush")
	}

	fn poll_shutdown(
		self: Pin<&mut Self>,
		_cx: &mut Context<'_>
	) -> Poll<io::Result<()>> {
		todo!("poll_shutdown")
	}
}