Bump actions/checkout from 5 to 6 #62
Annotations
6 warnings
|
hiding a lifetime that's elided elsewhere is confusing:
src/lib.rs#L274
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/lib.rs:274:22
|
274 | pub const fn get(&mut self, index: usize) -> Option<UniqueMmioPointer<T>> {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
274 | pub const fn get(&mut self, index: usize) -> Option<UniqueMmioPointer<'_, T>> {
| +++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/lib.rs#L252
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/lib.rs:252:31
|
252 | pub const fn as_mut_slice(&mut self) -> UniqueMmioPointer<[T]> {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
252 | pub const fn as_mut_slice(&mut self) -> UniqueMmioPointer<'_, [T]> {
| +++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/lib.rs#L240
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/lib.rs:240:18
|
240 | pub fn split(&mut self) -> [UniqueMmioPointer<T>; LEN] {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
240 | pub fn split(&mut self) -> [UniqueMmioPointer<'_, T>; LEN] {
| +++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/lib.rs#L193
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/lib.rs:193:22
|
193 | pub const fn get(&mut self, index: usize) -> Option<UniqueMmioPointer<T>> {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
193 | pub const fn get(&mut self, index: usize) -> Option<UniqueMmioPointer<'_, T>> {
| +++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/lib.rs#L96
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/lib.rs:96:27
|
96 | pub const fn reborrow(&mut self) -> UniqueMmioPointer<T> {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
96 | pub const fn reborrow(&mut self) -> UniqueMmioPointer<'_, T> {
| +++
|
|
hiding a lifetime that's elided elsewhere is confusing:
src/lib.rs#L78
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/lib.rs:78:42
|
78 | pub const unsafe fn child<U: ?Sized>(&mut self, regs: NonNull<U>) -> UniqueMmioPointer<U> {
| ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
= note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: use `'_` for type paths
|
78 | pub const unsafe fn child<U: ?Sized>(&mut self, regs: NonNull<U>) -> UniqueMmioPointer<'_, U> {
| +++
|