Skip to content

Lifetimes as trait bounds #2401

Open
Open
@jgarvin

Description

@jgarvin

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions