We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
I want to use this crate to normalize a search, so i have concern about the performance of.collect::<String>.
.collect::<String>
Is there a way to reuse the previous value, when possible ?
When i try.collect::<Cow<str>>, i always seeOwned("...") in the debugger.
.collect::<Cow<str>>
Owned("...")