Skip to content

Commit 57e33a4

Browse files
authored
Merge pull request #82 from openssh-rust/fix/remove-io-lifetime-in-pub-api
Rm `From<OwnedFd> for Stdio` impl
2 parents 8884413 + c7867ba commit 57e33a4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/stdio.rs

-6
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,6 @@ impl From<Stdio> for process::Stdio {
7575
}
7676
}
7777

78-
impl From<OwnedFd> for Stdio {
79-
fn from(fd: OwnedFd) -> Self {
80-
Self(StdioImpl::Fd(fd))
81-
}
82-
}
83-
8478
macro_rules! impl_from_for_stdio {
8579
($type:ty) => {
8680
impl From<$type> for Stdio {

0 commit comments

Comments
 (0)