Asm macro support #654
clippy
4 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 4 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.81.0-beta.1 (b13c0dda2 2024-07-22)
- cargo 1.81.0-beta.1 (a2b58c3da 2024-07-16)
- clippy 0.1.81 (b13c0dd 2024-07-22)
Annotations
Check failure on line 205 in assemble/src/lib.rs
github-actions / clippy
conflicting implementations of trait `std::fmt::Display` for type `FileInfo`
error[E0119]: conflicting implementations of trait `std::fmt::Display` for type `FileInfo`
--> assemble/src/lib.rs:205:1
|
192 | impl std::fmt::Display for FileInfo {
| ----------------------------------- first implementation here
...
205 | impl std::fmt::Display for FileInfo {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `FileInfo`
Check failure on line 198 in assemble/src/lib.rs
github-actions / clippy
conflicting implementations of trait `std::fmt::Debug` for type `FileInfo`
error[E0119]: conflicting implementations of trait `std::fmt::Debug` for type `FileInfo`
--> assemble/src/lib.rs:198:17
|
185 | #[derive(Clone, Debug)]
| ----- first implementation here
...
198 | #[derive(Clone, Debug)]
| ^^^^^ conflicting implementation for `FileInfo`
|
= note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info)
Check failure on line 198 in assemble/src/lib.rs
github-actions / clippy
conflicting implementations of trait `std::clone::Clone` for type `FileInfo`
error[E0119]: conflicting implementations of trait `std::clone::Clone` for type `FileInfo`
--> assemble/src/lib.rs:198:10
|
185 | #[derive(Clone, Debug)]
| ----- first implementation here
...
198 | #[derive(Clone, Debug)]
| ^^^^^ conflicting implementation for `FileInfo`
|
= note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
Check failure on line 200 in assemble/src/lib.rs
github-actions / clippy
the name `FileInfo` is defined multiple times
error[E0428]: the name `FileInfo` is defined multiple times
--> assemble/src/lib.rs:200:1
|
187 | pub struct FileInfo {
| ------------------- previous definition of the type `FileInfo` here
...
200 | pub struct FileInfo {
| ^^^^^^^^^^^^^^^^^^^ `FileInfo` redefined here
|
= note: `FileInfo` must be defined only once in the type namespace of this module