File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,6 @@ pub struct WormholeWelcome {
106
106
* Maybe a better way to handle application level protocols is to create a trait for them and then
107
107
* to paramterize over them.
108
108
*/
109
-
110
109
/// A `MailboxConnection` contains a `RendezvousServer` which is connected to the mailbox
111
110
pub struct MailboxConnection < V : serde:: Serialize + Send + Sync + ' static > {
112
111
/// A copy of `AppConfig`,
Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ impl<'de> serde::Deserialize<'de> for Hints {
357
357
if !relay_v2. is_empty ( ) {
358
358
relay. clear ( ) ;
359
359
}
360
- relay. extend ( relay_v2. into_iter ( ) . map ( Into :: into ) ) ;
360
+ relay. extend ( relay_v2) ;
361
361
362
362
Ok ( Hints { direct_tcp, relay } )
363
363
}
@@ -1441,6 +1441,7 @@ impl Transit {
1441
1441
1442
1442
/** Convert the transit connection to a [`Stream`]/[`Sink`] pair */
1443
1443
#[ cfg( not( target_family = "wasm" ) ) ]
1444
+ #[ allow( clippy:: type_complexity) ]
1444
1445
pub fn split (
1445
1446
self ,
1446
1447
) -> (
You can’t perform that action at this time.
0 commit comments