Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRustgeneric bounds and whereSingle-choice MCQ

What is the practical difference between these two signatures?

fn a<T: Into<String>>(x: T) { /* ... */ } fn b(x: impl Into<String>) { /* ... */ }