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
Is there any support without using String? As I see it you don't need String for anything, you can just use core::fmt::Write. Would eliminate the need for an allocator
The text was updated successfully, but these errors were encountered:
I remember experimenting with this in the past, but the extra Result param made codegen slightly worse. Might be worth checking if that factor still applies now.
Another consideration. With context-aware escaping, we might want to censor values after they're built – see the #ZgotmplZ example in html/template. It would be difficult to implement this without an intermediate buffer.
Is there any support without using
String
? As I see it you don't needString
for anything, you can just usecore::fmt::Write
. Would eliminate the need for an allocatorThe text was updated successfully, but these errors were encountered: