Closed
Description
For example, we have ToString:
impl<T: fmt::Display + ?Sized> ToString for T {
fn to_string(&self) -> String { /*...*/ }
}
This shows up fine in stable: https://doc.rust-lang.org/stable/std/string/trait.ToString.html
However, starting in beta, we have a specializable version:
impl<T: fmt::Display + ?Sized> ToString for T {
default fn to_string(&self) -> String { /*...*/ }
}
Which doesn't show up: https://doc.rust-lang.org/beta/std/string/trait.ToString.html
Metadata
Metadata
Assignees
Labels
No labels