You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the solution here is just making the reexport relationships clearer (similar to #13414).
libstd is the crate that people should be using almost always; libcore is designed to the most fundamental code, with very few assumptions, suitable for use when writing operating systems etc.
The trait
Show
and its documentation seems pretty identical:type Result = Result<(), FormatError>;
http://doc.rust-lang.org/core/fmt/type.Result.htmlIf there is a reason to have both, please point to each other and explain when to use which. CC @steveklabnik
If not, consider removing
std::fmt::Show
.The text was updated successfully, but these errors were encountered: