implement rust WebsocketProvider #333
Annotations
2 errors
the following explicit lifetimes could be elided: 'a:
rust/rust/src/websocketprovider.rs#L168
error: the following explicit lifetimes could be elided: 'a
--> ./rust/rust/src/websocketprovider.rs:168:6
|
168 | impl<'a> WebsocketClient<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
168 - impl<'a> WebsocketClient<'a> {
168 + impl WebsocketClient<'_> {
|
|
cargo clippy
Error: Clippy has exited with exit code 101
|