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 great if Term implemented std::io::Write so that we can pass it to write!() and other functions that take a Write. Currently, Term::write_line() is all that exists, and I don't always want to write a new line. Pre-formatting strings is a bit of a hassle, but having to always write a line also means we can't really do prompts like:
Please enter some input: <cursor>
The text was updated successfully, but these errors were encountered:
It would be great if
Term
implementedstd::io::Write
so that we can pass it towrite!()
and other functions that take aWrite
. Currently,Term::write_line()
is all that exists, and I don't always want to write a new line. Pre-formatting strings is a bit of a hassle, but having to always write a line also means we can't really do prompts like:The text was updated successfully, but these errors were encountered: