Commit b122931 1 parent c393310 commit b122931 Copy full SHA for b122931
File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ where
169
169
}
170
170
}
171
171
172
+ #[ allow( clippy:: type_complexity) ]
172
173
fn retrieve_round_output_if_its_completed < R > (
173
174
& mut self ,
174
175
) -> Option < Result < R :: Output , CompleteRoundError < R :: Error , E > > >
@@ -321,6 +322,7 @@ trait ProcessRoundMessage {
321
322
/// * `Ok(Ok(any))` — round is successfully completed, `any` needs to be downcasted to `MessageStore::Output`
322
323
/// * `Ok(Err(any))` — round has terminated with an error, `any` needs to be downcasted to `CompleteRoundError<MessageStore::Error>`
323
324
/// * `Err(err)` — couldn't retrieve the output, see [`TakeOutputError`]
325
+ #[ allow( clippy:: type_complexity) ]
324
326
fn take_output ( & mut self ) -> Result < Result < Box < dyn Any > , Box < dyn Any > > , TakeOutputError > ;
325
327
}
326
328
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ impl<M> Outgoings<M> {
37
37
}
38
38
}
39
39
40
- impl < ' a , M > crate :: Sink < crate :: Outgoing < M > > for Outgoings < M > {
40
+ impl < M > crate :: Sink < crate :: Outgoing < M > > for Outgoings < M > {
41
41
type Error = SendErr ;
42
42
43
43
fn poll_ready (
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ impl<M> Runtime<M> {
11
11
}
12
12
}
13
13
14
- impl < ' a , M > crate :: runtime:: AsyncRuntime for Runtime < M > {
14
+ impl < M > crate :: runtime:: AsyncRuntime for Runtime < M > {
15
15
type YieldNowFuture = YieldNow < M > ;
16
16
17
17
fn yield_now ( & self ) -> Self :: YieldNowFuture {
@@ -28,7 +28,7 @@ pub struct YieldNow<M> {
28
28
yielded : bool ,
29
29
}
30
30
31
- impl < ' a , M > core:: future:: Future for YieldNow < M > {
31
+ impl < M > core:: future:: Future for YieldNow < M > {
32
32
type Output = ( ) ;
33
33
34
34
fn poll (
You can’t perform that action at this time.
0 commit comments