DEV Community

Discussion on: Rust impl Trait For Programmers

Collapse
 
hertz4 profile image
Sam Pagenkopf

I found this error message that explains things well:
github.com/rust-lang/rust/issues/5...

The lifetime is 'static by default, but writing Display + '_ tells the compiler to infer a shorter-lasting lifetime.