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
It would be nice if it were possible to output to a String directly, rather than having to do a dance with format! and the Display impl. I assume the reason this is not currently possible is because this crate is no_std.
The text was updated successfully, but these errors were encountered:
Yes, I should have mentioned that. to_string (which comes from std's impl ToString for T where T: Display) doesn't allow specifying the alternative formatting (i.e. no hashes) argument though.
It would be nice if it were possible to output to a
String
directly, rather than having to do a dance withformat!
and theDisplay
impl. I assume the reason this is not currently possible is because this crate isno_std
.The text was updated successfully, but these errors were encountered: