We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66e9952 commit e0f3833Copy full SHA for e0f3833
src/forwarding.rs
@@ -736,7 +736,6 @@ impl ConnectOffer {
736
}
737
738
739
-#[expect(clippy::type_complexity)]
740
struct ForwardConnect<I> {
741
//transit: &'a mut transit::Transit,
742
/* when can I finally store an `impl Trait` in a struct? */
src/transit/transport.rs
@@ -221,7 +221,7 @@ async fn tcp_connect_custom(
221
.take_error()
222
.and_then(|maybe_err| maybe_err.map_or(Ok(()), Result::Err))?;
223
/* Convert our mess to `smol::net::TcpStream */
224
- Ok(stream.into_inner()?.try_into()?)
+ stream.into_inner()?.try_into()
225
226
227
#[cfg(not(target_family = "wasm"))]
0 commit comments