Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRustlifetime annotations on structsSingle-choice MCQ

What does adding the `+ 'a` bound to this trait object accomplish?

struct Cache<'a> { loader: Box<dyn Fn() -> i32 + 'a>, }