pub trait ToSmolStr {
// Required method
fn to_smolstr(&self) -> SmolStr;
}
Expand description
Convert value to SmolStr
using fmt::Display
, potentially without allocating.
Almost identical to [ToString
], but converts to SmolStr
instead.