Skip to content

Commit

Permalink
nah
Browse files Browse the repository at this point in the history
  • Loading branch information
kotauskas committed Jun 13, 2024
1 parent 9a96e58 commit d80e871
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/os/windows/unnamed_pipe/tokio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ impl TryFrom<Recver> for OwnedHandle {
.map_err(|_| io::Error::new(io::ErrorKind::Other, INFLIGHT_ERR))
}
}
// TODO can this be infallible?
impl TryFrom<OwnedHandle> for Recver {
type Error = io::Error;
fn try_from(handle: OwnedHandle) -> io::Result<Self> {
Expand Down Expand Up @@ -147,7 +146,6 @@ impl TryFrom<Sender> for OwnedHandle {
.map_err(|_| io::Error::new(io::ErrorKind::Other, INFLIGHT_ERR))
}
}
// TODO can this be infallible?
impl TryFrom<OwnedHandle> for Sender {
type Error = io::Error;
fn try_from(handle: OwnedHandle) -> io::Result<Self> {
Expand Down

0 comments on commit d80e871

Please sign in to comment.