feat: add tui-qrcode crate (#56) #113
check.yml
on: push
check
/
...
/
fmt
13s
check
/
...
/
doc
21s
check
/
...
/
check
23s
Matrix: check / clippy
Annotations
6 warnings
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L79
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:79:6
|
79 | impl<'content, W> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= 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
|
79 - impl<'content, W> Popup<'content, W> {
79 + impl<W> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L151
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:151:6
|
151 | impl<'content, W: KnownSize> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
151 - impl<'content, W: KnownSize> Popup<'content, W> {
151 + impl<W: KnownSize> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'a:
tui-prompts/src/text_prompt.rs#L178
warning: the following explicit lifetimes could be elided: 'a
--> tui-prompts/src/text_prompt.rs:178:6
|
178 | impl<'a> TextPrompt<'a> {
| ^^ ^^
|
= 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
|
178 - impl<'a> TextPrompt<'a> {
178 + impl TextPrompt<'_> {
|
|
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L79
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:79:6
|
79 | impl<'content, W> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= 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
|
79 - impl<'content, W> Popup<'content, W> {
79 + impl<W> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L151
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:151:6
|
151 | impl<'content, W: KnownSize> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
151 - impl<'content, W: KnownSize> Popup<'content, W> {
151 + impl<W: KnownSize> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'a:
tui-prompts/src/text_prompt.rs#L178
warning: the following explicit lifetimes could be elided: 'a
--> tui-prompts/src/text_prompt.rs:178:6
|
178 | impl<'a> TextPrompt<'a> {
| ^^ ^^
|
= 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
|
178 - impl<'a> TextPrompt<'a> {
178 + impl TextPrompt<'_> {
|
|