drop deprecated error handling methods #104
Annotations
1 error and 4 warnings
|
semver_check
The process '/home/runner/.cargo/bin/cargo' failed with exit code 1
|
|
this function has too many arguments (10/9):
src/io_loop.rs#L65
warning: this function has too many arguments (10/9)
--> src/io_loop.rs:65:5
|
65 | / pub(crate) fn new(
66 | | connection_status: ConnectionStatus,
67 | | configuration: Configuration,
68 | | channels: Channels,
... |
83 | | uri: AMQPUri,
84 | | ) -> Self {
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
= note: `-W clippy::too-many-arguments` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::too_many_arguments)]`
|
|
very complex type used. Consider factoring parts into `type` definitions:
src/io_loop.rs#L74
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/io_loop.rs:74:18
|
74 | connect: Arc<
| __________________^
75 | | dyn (Fn(
76 | | AMQPUri,
77 | | Runtime<RK>,
... |
81 | | + Sync,
82 | | >,
| |_________^
|
= 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 | | Runtime<RK>,
... |
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#L203
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/connection.rs:203:18
|
203 | connect: Box<
| __________________^
204 | | dyn (Fn(
205 | | AMQPUri,
206 | | Runtime<RK>,
... |
210 | | + Sync,
211 | | >,
| |_________^
|
= 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)]`
|