Open
Description
I looked but was unable to find any explaining around constructs like this:
trait Foo : Display + 'static {
}
Or more commonly:
fn foo<T: Bar + 'static> {
}
That is, I haven't seen any discussion of lifetimes being "added" to traits. This was very confusing for a newbie.
Relatedly, I think new users are pretty likely to run into this as soon as they start trying to use the heap: https://users.rust-lang.org/t/box-with-a-trait-object-requires-static-lifetime/35261 Which requires understanding this. I think even going through that example specifically could be helpful.