Initial work #6
check.yml
on: pull_request
commit_list
5s
Matrix: clippy
Matrix: ubuntu / stable / deny
Matrix: nightly / doc
Matrix: nightly / fmt
Matrix: ubuntu / stable / features
Matrix: msrv
Annotations
18 errors and 50 warnings
ubuntu / stable / features (2ce8fa6998da334df51e97a7c4a887e54f09f391)
Process completed with exit code 1.
|
ubuntu / stable / features (f921e73d4863c7df83333a2e6ddc783fcd93629b)
Process completed with exit code 1.
|
ubuntu / stable / features (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
Process completed with exit code 1.
|
nightly / doc (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
Process completed with exit code 101.
|
nightly / doc (f921e73d4863c7df83333a2e6ddc783fcd93629b)
Process completed with exit code 101.
|
stable / clippy (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c):
src/lib.rs#L69
[clippy] reported by reviewdog 🐶
error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:69:1
|
69 | impl<T, BE> Into<Result<T, Error<BE>>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: `impl From<Local> for Foreign` is allowed by the orphan rules, for more information see
https://doc.rust-lang.org/reference/items/implementations.html#trait-implementation-coherence
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
= note: `-F clippy::from-over-into` implied by `-F clippy::style`
help: replace the `Into` implementation with `From<PdError>`
|
69 ~ impl<T, BE> From<PdError> for Result<T, Error<BE>> {
70 ~ fn from(val: PdError) -> Self {
71 ~ Err(Error::Pd(val))
|
Raw Output:
src/lib.rs:69:1:e:error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:69:1
|
69 | impl<T, BE> Into<Result<T, Error<BE>>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: `impl From<Local> for Foreign` is allowed by the orphan rules, for more information see
https://doc.rust-lang.org/reference/items/implementations.html#trait-implementation-coherence
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
= note: `-F clippy::from-over-into` implied by `-F clippy::style`
help: replace the `Into` implementation with `From<PdError>`
|
69 ~ impl<T, BE> From<PdError> for Result<T, Error<BE>> {
70 ~ fn from(val: PdError) -> Self {
71 ~ Err(Error::Pd(val))
|
__END__
|
stable / clippy (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c):
src/lib.rs#L75
[clippy] reported by reviewdog 🐶
error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:75:1
|
75 | impl<BE> Into<Error<BE>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
help: replace the `Into` implementation with `From<PdError>`
|
75 ~ impl<BE> From<PdError> for Error<BE> {
76 ~ fn from(val: PdError) -> Self {
77 ~ Error::Pd(val)
|
Raw Output:
src/lib.rs:75:1:e:error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:75:1
|
75 | impl<BE> Into<Error<BE>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
help: replace the `Into` implementation with `From<PdError>`
|
75 ~ impl<BE> From<PdError> for Error<BE> {
76 ~ fn from(val: PdError) -> Self {
77 ~ Error::Pd(val)
|
__END__
|
nightly / fmt (f921e73d4863c7df83333a2e6ddc783fcd93629b)
Process completed with exit code 1.
|
beta / clippy (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c):
src/lib.rs#L69
[clippy] reported by reviewdog 🐶
error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:69:1
|
69 | impl<T, BE> Into<Result<T, Error<BE>>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: `impl From<Local> for Foreign` is allowed by the orphan rules, for more information see
https://doc.rust-lang.org/reference/items/implementations.html#trait-implementation-coherence
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
= note: `-F clippy::from-over-into` implied by `-F clippy::style`
help: replace the `Into` implementation with `From<PdError>`
|
69 ~ impl<T, BE> From<PdError> for Result<T, Error<BE>> {
70 ~ fn from(val: PdError) -> Self {
71 ~ Err(Error::Pd(val))
|
Raw Output:
src/lib.rs:69:1:e:error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:69:1
|
69 | impl<T, BE> Into<Result<T, Error<BE>>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: `impl From<Local> for Foreign` is allowed by the orphan rules, for more information see
https://doc.rust-lang.org/reference/items/implementations.html#trait-implementation-coherence
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
= note: `-F clippy::from-over-into` implied by `-F clippy::style`
help: replace the `Into` implementation with `From<PdError>`
|
69 ~ impl<T, BE> From<PdError> for Result<T, Error<BE>> {
70 ~ fn from(val: PdError) -> Self {
71 ~ Err(Error::Pd(val))
|
__END__
|
beta / clippy (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c):
src/lib.rs#L75
[clippy] reported by reviewdog 🐶
error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:75:1
|
75 | impl<BE> Into<Error<BE>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
help: replace the `Into` implementation with `From<PdError>`
|
75 ~ impl<BE> From<PdError> for Error<BE> {
76 ~ fn from(val: PdError) -> Self {
77 ~ Error::Pd(val)
|
Raw Output:
src/lib.rs:75:1:e:error: an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true
--> src/lib.rs:75:1
|
75 | impl<BE> Into<Error<BE>> for PdError {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into
help: replace the `Into` implementation with `From<PdError>`
|
75 ~ impl<BE> From<PdError> for Error<BE> {
76 ~ fn from(val: PdError) -> Self {
77 ~ Error::Pd(val)
|
__END__
|
ubuntu / 1.79 (f921e73d4863c7df83333a2e6ddc783fcd93629b)
Process completed with exit code 101.
|
nightly / fmt (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
Process completed with exit code 1.
|
nightly / fmt (2ce8fa6998da334df51e97a7c4a887e54f09f391)
Process completed with exit code 1.
|
nightly / doc (2ce8fa6998da334df51e97a7c4a887e54f09f391)
Process completed with exit code 101.
|
ubuntu / 1.79 (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
Process completed with exit code 101.
|
ubuntu / 1.79 (2ce8fa6998da334df51e97a7c4a887e54f09f391)
Process completed with exit code 101.
|
beta / clippy (2ce8fa6998da334df51e97a7c4a887e54f09f391):
src/lib.rs#L3
[clippy] reported by reviewdog 🐶
error[E0583]: file not found for module `asynchronous`
--> src/lib.rs:3:1
|
3 | pub mod asynchronous;
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: to create the module `asynchronous`, create file "src/asynchronous.rs" or "src/asynchronous/mod.rs"
= note: if there is a `mod asynchronous` elsewhere in the crate already, import it with `use crate::...` instead
Raw Output:
src/lib.rs:3:1:e:error[E0583]: file not found for module `asynchronous`
--> src/lib.rs:3:1
|
3 | pub mod asynchronous;
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: to create the module `asynchronous`, create file "src/asynchronous.rs" or "src/asynchronous/mod.rs"
= note: if there is a `mod asynchronous` elsewhere in the crate already, import it with `use crate::...` instead
__END__
|
stable / clippy (2ce8fa6998da334df51e97a7c4a887e54f09f391):
src/lib.rs#L3
[clippy] reported by reviewdog 🐶
error[E0583]: file not found for module `asynchronous`
--> src/lib.rs:3:1
|
3 | pub mod asynchronous;
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: to create the module `asynchronous`, create file "src/asynchronous.rs" or "src/asynchronous/mod.rs"
= note: if there is a `mod asynchronous` elsewhere in the crate already, import it with `use crate::...` instead
Raw Output:
src/lib.rs:3:1:e:error[E0583]: file not found for module `asynchronous`
--> src/lib.rs:3:1
|
3 | pub mod asynchronous;
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: to create the module `asynchronous`, create file "src/asynchronous.rs" or "src/asynchronous/mod.rs"
= note: if there is a `mod asynchronous` elsewhere in the crate already, import it with `use crate::...` instead
__END__
|
commit_list
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / features (2ce8fa6998da334df51e97a7c4a887e54f09f391)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / features (f921e73d4863c7df83333a2e6ddc783fcd93629b)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / features (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / doc (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / features (58136abfb6d4b1b9cfbfb0639adf0326041479b3)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / doc (58136abfb6d4b1b9cfbfb0639adf0326041479b3)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / clippy (f921e73d4863c7df83333a2e6ddc783fcd93629b)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / doc (f921e73d4863c7df83333a2e6ddc783fcd93629b)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / clippy (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / fmt (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / fmt (5ef0a859912f94ff9c3883f3c309c64db5569dbb)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / fmt (f921e73d4863c7df83333a2e6ddc783fcd93629b)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / clippy (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / fmt (58136abfb6d4b1b9cfbfb0639adf0326041479b3)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
beta / clippy (58136abfb6d4b1b9cfbfb0639adf0326041479b3)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / 1.79 (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / fmt (fe0ec99b4d77eb05b164df77a339a209a5fc65c4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
beta / clippy (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / 1.79 (58136abfb6d4b1b9cfbfb0639adf0326041479b3)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / 1.79 (f921e73d4863c7df83333a2e6ddc783fcd93629b)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / doc (5ef0a859912f94ff9c3883f3c309c64db5569dbb)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / fmt (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
beta / clippy (f921e73d4863c7df83333a2e6ddc783fcd93629b)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / doc (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / fmt (2ce8fa6998da334df51e97a7c4a887e54f09f391)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / doc (2ce8fa6998da334df51e97a7c4a887e54f09f391)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
beta / clippy (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / 1.79 (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / clippy (58136abfb6d4b1b9cfbfb0639adf0326041479b3)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / clippy (5ef0a859912f94ff9c3883f3c309c64db5569dbb)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
nightly / doc (fe0ec99b4d77eb05b164df77a339a209a5fc65c4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / 1.79 (fe0ec99b4d77eb05b164df77a339a209a5fc65c4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
beta / clippy (5ef0a859912f94ff9c3883f3c309c64db5569dbb)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / deny (f921e73d4863c7df83333a2e6ddc783fcd93629b)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / 1.79 (2ce8fa6998da334df51e97a7c4a887e54f09f391)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
beta / clippy (2ce8fa6998da334df51e97a7c4a887e54f09f391)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / deny (fe0ec99b4d77eb05b164df77a339a209a5fc65c4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / features (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / deny (fe8df88bb52d1ca0f9671f8651cd8959f2c6b392)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / features (5ef0a859912f94ff9c3883f3c309c64db5569dbb)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / 1.79 (5ef0a859912f94ff9c3883f3c309c64db5569dbb)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
beta / clippy (fe0ec99b4d77eb05b164df77a339a209a5fc65c4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / deny (2ce8fa6998da334df51e97a7c4a887e54f09f391)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / deny (58136abfb6d4b1b9cfbfb0639adf0326041479b3)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / deny (8aa45c49debdbe8b6da55de140ad60ca47b3ea3c)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / clippy (2ce8fa6998da334df51e97a7c4a887e54f09f391)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / deny (5ef0a859912f94ff9c3883f3c309c64db5569dbb)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
stable / clippy (fe0ec99b4d77eb05b164df77a339a209a5fc65c4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ubuntu / stable / features (fe0ec99b4d77eb05b164df77a339a209a5fc65c4)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|