mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-15 00:00:15 +02:00
67 lines
1.3 KiB
Rust
67 lines
1.3 KiB
Rust
use tokio::io::{split, AsyncRead, AsyncWrite};
|
|
use tokio_io::split::{ReadHalf, WriteHalf};
|
|
|
|
use std::io;
|
|
use std::pin::Pin;
|
|
use std::task::{Context, Poll};
|
|
|
|
struct RW;
|
|
|
|
impl AsyncRead for RW {
|
|
fn poll_read(
|
|
self: Pin<&mut Self>,
|
|
_cx: &mut Context<'_>,
|
|
_buf: &mut [u8],
|
|
) -> Poll<io::Result<usize>> {
|
|
Poll::Ready(Ok(1))
|
|
}
|
|
}
|
|
|
|
impl AsyncWrite for RW {
|
|
fn poll_write(
|
|
self: Pin<&mut Self>,
|
|
_cx: &mut Context<'_>,
|
|
_buf: &[u8],
|
|
) -> Poll<Result<usize, io::Error>> {
|
|
Poll::Ready(Ok(1))
|
|
}
|
|
|
|
fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> {
|
|
Poll::Ready(Ok(()))
|
|
}
|
|
|
|
fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> {
|
|
Poll::Ready(Ok(()))
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn is_send_and_sync() {
|
|
fn assert_bound<T: Send + Sync>() {}
|
|
|
|
assert_bound::<ReadHalf<RW>>();
|
|
assert_bound::<WriteHalf<RW>>();
|
|
}
|
|
|
|
#[test]
|
|
fn unsplit_ok() {
|
|
let (r, w) = split(RW);
|
|
r.unsplit(w);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn unsplit_err1() {
|
|
let (r, _) = split(RW);
|
|
let (_, w) = split(RW);
|
|
r.unsplit(w);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn unsplit_err2() {
|
|
let (_, w) = split(RW);
|
|
let (r, _) = split(RW);
|
|
r.unsplit(w);
|
|
}
|