@@ -122,23 +122,23 @@ pin_project_lite::pin_project! {
122
122
}
123
123
}
124
124
125
- impl < TrySend , MakeFut , Fut > UdpPollHelper < TrySend , MakeFut , Fut > {
126
- /// Construct a [`UdpPoller`] that calls `make_fut` to get the future to poll, storing it until
127
- /// it yields [`Poll::Ready`], then creating a new one on the next
128
- /// [`poll_writable`](UdpPoller::poll_writable)
129
- #[ cfg( any(
130
- feature = "runtime-async-std" ,
131
- feature = "runtime-smol" ,
132
- feature = "runtime-tokio"
133
- ) ) ]
134
- fn new ( try_send : TrySend , make_fut : MakeFut ) -> Self {
135
- Self {
136
- try_send,
137
- make_fut,
138
- fut : None ,
139
- }
140
- }
141
- }
125
+ // impl<TrySend, MakeFut, Fut> UdpPollHelper<TrySend, MakeFut, Fut> {
126
+ // /// Construct a [`UdpPoller`] that calls `make_fut` to get the future to poll, storing it until
127
+ // /// it yields [`Poll::Ready`], then creating a new one on the next
128
+ // /// [`poll_writable`](UdpPoller::poll_writable)
129
+ // #[cfg(any(
130
+ // feature = "runtime-async-std",
131
+ // feature = "runtime-smol",
132
+ // feature = "runtime-tokio"
133
+ // ))]
134
+ // fn new(try_send: TrySend, make_fut: MakeFut) -> Self {
135
+ // Self {
136
+ // try_send,
137
+ // make_fut,
138
+ // fut: None,
139
+ // }
140
+ // }
141
+ // }
142
142
143
143
// impl<TrySend, MakeFut, Fut> UdpSender for UdpPollHelper<TrySend, MakeFut, Fut>
144
144
// where
0 commit comments