Function design_pattern_examples_rust::helpers::cursor::hide_cursor
source · pub fn hide_cursor()
Expand description
Hide or turn off the cursor that is normally always visible on the console.
We could use an ANSI sequence for this (ESC[?25l), but the sequence is private and not necessarily supported everywhere. The crossterm crate makes this simple and hides any system differences.