Skip to content

Asm macro support

Asm macro support #654

GitHub Actions / clippy failed Jul 25, 2024 in 0s

clippy

4 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 4
Warning 0
Note 0
Help 0

Versions

  • rustc 1.80.0 (051478957 2024-07-21)
  • cargo 1.80.0 (376290515 2024-07-16)
  • clippy 0.1.80 (0514789 2024-07-21)

Annotations

Check failure on line 205 in assemble/src/lib.rs

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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