Update env_logger requirement from 0.10 to 0.11 #556
Annotations
2 errors and 1 warning
msrv
Process completed with exit code 101.
|
lint
reviewdog exited with status code: 1
|
lint:
src/dds/no_key/simpledatareader.rs#L73
[clippy] reported by reviewdog 🐶
warning: this bound is already specified as the supertrait of `FusedStream`
--> src/dds/no_key/simpledatareader.rs:73:13
|
73 | ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls
= note: `#[warn(clippy::implied_bounds_in_impls)]` on by default
help: try removing this bound
|
73 - ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ {
73 + ) -> impl FusedStream<Item = ReadResult<DeserializedCacheChange<D>>> + '_ {
|
Raw Output:
src/dds/no_key/simpledatareader.rs:73:13:w:warning: this bound is already specified as the supertrait of `FusedStream`
--> src/dds/no_key/simpledatareader.rs:73:13
|
73 | ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls
= note: `#[warn(clippy::implied_bounds_in_impls)]` on by default
help: try removing this bound
|
73 - ) -> impl Stream<Item = ReadResult<DeserializedCacheChange<D>>> + FusedStream + '_ {
73 + ) -> impl FusedStream<Item = ReadResult<DeserializedCacheChange<D>>> + '_ {
|
__END__
|