We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea80029 commit 91b8c01Copy full SHA for 91b8c01
embedded-nal-async/src/stack/tcp.rs
@@ -24,7 +24,10 @@ pub trait TcpConnect {
24
impl<T: TcpConnect> TcpConnect for &T {
25
type Error = T::Error;
26
27
- type Connection<'a> = T::Connection<'a> where Self: 'a;
+ type Connection<'a>
28
+ = T::Connection<'a>
29
+ where
30
+ Self: 'a;
31
32
async fn connect<'a>(
33
&'a self,
0 commit comments