Skip to content

fix: Fix incorrect seleno cds end #379

fix: Fix incorrect seleno cds end

fix: Fix incorrect seleno cds end #379

GitHub Actions / clippy succeeded Nov 29, 2024 in 0s

clippy

8 warnings

Details

Results

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

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check warning on line 562 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/parser/display.rs:562:6
    |
562 | impl<'a> Display for NoRef<'a, HgvsVariant> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
562 - impl<'a> Display for NoRef<'a, HgvsVariant> {
562 + impl Display for NoRef<'_, HgvsVariant> {
    |

Check warning on line 467 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/parser/display.rs:467:6
    |
467 | impl<'a> Display for NoRef<'a, MtLocEdit> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
467 - impl<'a> Display for NoRef<'a, MtLocEdit> {
467 + impl Display for NoRef<'_, MtLocEdit> {
    |

Check warning on line 439 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/parser/display.rs:439:6
    |
439 | impl<'a> Display for NoRef<'a, GenomeLocEdit> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
439 - impl<'a> Display for NoRef<'a, GenomeLocEdit> {
439 + impl Display for NoRef<'_, GenomeLocEdit> {
    |

Check warning on line 402 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/parser/display.rs:402:6
    |
402 | impl<'a> Display for NoRef<'a, RnaLocEdit> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
402 - impl<'a> Display for NoRef<'a, RnaLocEdit> {
402 + impl Display for NoRef<'_, RnaLocEdit> {
    |

Check warning on line 365 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/parser/display.rs:365:6
    |
365 | impl<'a> Display for NoRef<'a, TxLocEdit> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
365 - impl<'a> Display for NoRef<'a, TxLocEdit> {
365 + impl Display for NoRef<'_, TxLocEdit> {
    |

Check warning on line 324 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/parser/display.rs:324:6
    |
324 | impl<'a> Display for NoRef<'a, CdsLocEdit> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
324 - impl<'a> Display for NoRef<'a, CdsLocEdit> {
324 + impl Display for NoRef<'_, CdsLocEdit> {
    |

Check warning on line 312 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/parser/display.rs:312:6
    |
312 | impl<'a> Display for NoRef<'a, ProtLocEdit> {
    |      ^^                    ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
312 - impl<'a> Display for NoRef<'a, ProtLocEdit> {
312 + impl Display for NoRef<'_, ProtLocEdit> {
    |

Check warning on line 99 in src/parser/display.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
  --> src/parser/display.rs:99:6
   |
99 | impl<'a> Display for NoRef<'a, NaEdit> {
   |      ^^                    ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
   = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
   |
99 - impl<'a> Display for NoRef<'a, NaEdit> {
99 + impl Display for NoRef<'_, NaEdit> {
   |