Add new reserved lifetime: 'owned
Rust Internals [Unofficial]
April 5, 2026
Voldemat:
Rust Playground
You are using the lifetime 's3 both for the lifetime of the strings that can be used to create a NS and as the lifetime somehow connected to V (I'm not sure why you need that lifetime parameter on Sequence though). The latter forces the lifetime to be attached to the type, leading to the same issue as before. However there's no reason for these lifetimes to be the same, just use a different lifetime: Rust Playground
Discussion in the ATmosphere