no_std support
remexre opened this issue · 1 comments
remexre commented
It'd be nice to have support for using core
+alloc
only, rather than full-blown std
.
Although if possible, it'd honestly be nicer to not require alloc
(for String
s) and instead return a Result<FileSizeWrite, FileSizeError>
from file_size
, where FileSizeWrite: core::fmt::Write
and FileSizeError
is similarly non-allocating.
Darksonn commented
The correct trait here is FileSizeWrite: Display
as opposed to Write
.