crossterm 设置字体样式 下面是一个使用 crossterm 的简单例子: usecrossterm::{cursor::{Hide,MoveTo,MoveToNextLine,Show},execute,style::{Stylize,SetAttribute,Attribute,Color,Print,PrintStyledContent,ResetColor,SetForegroundColor,SetBackgroundColor},terminal::{Clear,ClearType,EnterAlternateScreen,LeaveAlternat...
https://crates.io/crates/crosstermcrates.io/crates/crossterm 另外参看https://crates.io/crates...
所以需要再添加一个序列,在清屏后将光标移动到原点位置(左上角)。print!("\x1b[2J"); print!(...