don't store executor in Channel #94
Annotations
1 error and 3 warnings
|
semver_check
The process '/home/runner/.cargo/bin/cargo' failed with exit code 1
|
|
very complex type used. Consider factoring parts into `type` definitions:
src/io_loop.rs#L73
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/io_loop.rs:73:18
|
73 | connect: Arc<
| __________________^
74 | | dyn (Fn(
75 | | AMQPUri,
76 | | Arc<dyn FullExecutor + Send + Sync + 'static>,
... |
80 | | + Sync,
81 | | >,
| |_________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
|
|
very complex type used. Consider factoring parts into `type` definitions:
src/io_loop.rs#L47
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/io_loop.rs:47:14
|
47 | connect: Arc<
| ______________^
48 | | dyn (Fn(
49 | | AMQPUri,
50 | | Arc<dyn FullExecutor + Send + Sync + 'static>,
... |
54 | | + Sync,
55 | | >,
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
|
|
very complex type used. Consider factoring parts into `type` definitions:
src/connection.rs#L184
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/connection.rs:184:18
|
184 | connect: Box<
| __________________^
185 | | dyn (Fn(
186 | | AMQPUri,
187 | | Arc<dyn FullExecutor + Send + Sync + 'static>,
... |
191 | | + Sync,
192 | | >,
| |_________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `-W clippy::type-complexity` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::type_complexity)]`
|