Provide some rustdoc code examples #44
Annotations
3 warnings
|
the following explicit lifetimes could be elided: 'de:
src/serde.rs#L30
warning: the following explicit lifetimes could be elided: 'de
--> src/serde.rs:30:6
|
30 | impl<'de> Visitor<'de> for FlakeVisitor {
| ^^^ ^^^
|
= 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
|
30 - impl<'de> Visitor<'de> for FlakeVisitor {
30 + impl Visitor<'_> for FlakeVisitor {
|
|
|
build (ubuntu-latest)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
|
lint
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|