I’m running into E0367
when trying to build this (caused by alpm
).
Compiling alpm v1.1.8
error[E0367]: The requirement `for<'b> T: list::IntoAlpmListItem<'a, 'b>` is added only by the Drop impl.
--> /home/andrej/.cargo/registry/src/github.com-1ecc6299db9ec823/alpm-1.1.8/src/list.rs:193:1
|
193 | / impl<'a, T> Drop for AlpmListMut<'a, T>
194 | | where
195 | | for<'b> T: IntoAlpmListItem<'a, 'b>,
196 | | {
... |
208 | | }
209 | | }
| |_^
|
note: The same requirement must be part of the struct/enum definition
--> /home/andrej/.cargo/registry/src/github.com-1ecc6299db9ec823/alpm-1.1.8/src/list.rs:175:1
|
175 | / pub struct AlpmListMut<'a, T>
176 | | where
177 | | for<'b> T: IntoAlpmListItem<'a, 'b>,
178 | | {
179 | | list: AlpmList<'a, T>,
180 | | }
| |_^
error[E0367]: The requirement `for<'b> T: list::IntoAlpmListItem<'a, 'b>` is added only by the Drop impl.
--> /home/andrej/.cargo/registry/src/github.com-1ecc6299db9ec823/alpm-1.1.8/src/list.rs:447:1
|
447 | / impl<'a, T> Drop for IntoIterMut<'a, T>
448 | | where
449 | | for<'b> T: IntoAlpmListItem<'a, 'b>,
450 | | {
... |
453 | | }
454 | | }
| |_^
|
note: The same requirement must be part of the struct/enum definition
--> /home/andrej/.cargo/registry/src/github.com-1ecc6299db9ec823/alpm-1.1.8/src/list.rs:439:1
|
439 | / pub struct IntoIterMut<'a, T>
440 | | where
441 | | for<'b> T: IntoAlpmListItem<'a, 'b>,
442 | | {
443 | | list: ManuallyDrop<AlpmListMut<'a, T>>,
444 | | current: *mut alpm_list_t,
445 | | }
| |_^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0367`.
error: could not compile `alpm`.
warning: build failed, waiting for other jobs to finish...
error: build failed
Pinned Comments
haxie commented on 2023-05-26 17:45 (UTC)
you're better off contacting her via the github, this comments section is 90% "it's out of date" from people who didn't scroll down before posting