diff --git a/src/os/windows/unnamed_pipe/tokio.rs b/src/os/windows/unnamed_pipe/tokio.rs index 406f0b1..3e4fb27 100644 --- a/src/os/windows/unnamed_pipe/tokio.rs +++ b/src/os/windows/unnamed_pipe/tokio.rs @@ -67,7 +67,6 @@ impl TryFrom for OwnedHandle { .map_err(|_| io::Error::new(io::ErrorKind::Other, INFLIGHT_ERR)) } } -// TODO can this be infallible? impl TryFrom for Recver { type Error = io::Error; fn try_from(handle: OwnedHandle) -> io::Result { @@ -147,7 +146,6 @@ impl TryFrom for OwnedHandle { .map_err(|_| io::Error::new(io::ErrorKind::Other, INFLIGHT_ERR)) } } -// TODO can this be infallible? impl TryFrom for Sender { type Error = io::Error; fn try_from(handle: OwnedHandle) -> io::Result {