installer: Default to xfs for internal ISO testing #338
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (3)
lichen_ipc/src/com_serpentos_lichen_disks.rs|128 col 6| warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:128:6
|
128 | impl<'a> VarlinkCallError for varlink::Call<'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
|
128 - impl<'a> VarlinkCallError for varlink::Call<'a> {}
128 + impl VarlinkCallError for varlink::Call<'> {}
|
lichen_ipc/src/com_serpentos_lichen_disks.rs|182 col 6| warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:182:6
|
182 | impl<'a> Call_GetDisks for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
182 - impl<'a> Call_GetDisks for varlink::Call<'a> {}
182 + impl Call_GetDisks for varlink::Call<'> {}
|
lichen_ipc/src/com_serpentos_lichen_disks.rs|197 col 6| warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:197:6
|
197 | impl<'a> Call_GetPartitions for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
197 - impl<'a> Call_GetPartitions for varlink::Call<'a> {}
197 + impl Call_GetPartitions for varlink::Call<'_> {}
|
Filtered Findings (0)
Annotations
Check warning on line 128 in lichen_ipc/src/com_serpentos_lichen_disks.rs
github-actions / clippy
[clippy] lichen_ipc/src/com_serpentos_lichen_disks.rs#L128
warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:128:6
|
128 | impl<'a> VarlinkCallError for varlink::Call<'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
|
128 - impl<'a> VarlinkCallError for varlink::Call<'a> {}
128 + impl VarlinkCallError for varlink::Call<'_> {}
|
Raw output
lichen_ipc/src/com_serpentos_lichen_disks.rs:128:6:w:warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:128:6
|
128 | impl<'a> VarlinkCallError for varlink::Call<'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
|
128 - impl<'a> VarlinkCallError for varlink::Call<'a> {}
128 + impl VarlinkCallError for varlink::Call<'_> {}
|
__END__
Check warning on line 182 in lichen_ipc/src/com_serpentos_lichen_disks.rs
github-actions / clippy
[clippy] lichen_ipc/src/com_serpentos_lichen_disks.rs#L182
warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:182:6
|
182 | impl<'a> Call_GetDisks for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
182 - impl<'a> Call_GetDisks for varlink::Call<'a> {}
182 + impl Call_GetDisks for varlink::Call<'_> {}
|
Raw output
lichen_ipc/src/com_serpentos_lichen_disks.rs:182:6:w:warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:182:6
|
182 | impl<'a> Call_GetDisks for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
182 - impl<'a> Call_GetDisks for varlink::Call<'a> {}
182 + impl Call_GetDisks for varlink::Call<'_> {}
|
__END__
Check warning on line 197 in lichen_ipc/src/com_serpentos_lichen_disks.rs
github-actions / clippy
[clippy] lichen_ipc/src/com_serpentos_lichen_disks.rs#L197
warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:197:6
|
197 | impl<'a> Call_GetPartitions for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
197 - impl<'a> Call_GetPartitions for varlink::Call<'a> {}
197 + impl Call_GetPartitions for varlink::Call<'_> {}
|
Raw output
lichen_ipc/src/com_serpentos_lichen_disks.rs:197:6:w:warning: the following explicit lifetimes could be elided: 'a
--> lichen_ipc/src/com_serpentos_lichen_disks.rs:197:6
|
197 | impl<'a> Call_GetPartitions for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
197 - impl<'a> Call_GetPartitions for varlink::Call<'a> {}
197 + impl Call_GetPartitions for varlink::Call<'_> {}
|
__END__