console:防锈控制台和终端抽象

时间:2024-05-19 12:25:47
【文件属性】:

文件名称:console:防锈控制台和终端抽象

文件大小:28KB

文件格式:ZIP

更新时间:2024-05-19 12:25:47

Rust

安慰 console是Rust的库,它提供对各种终端功能的访问,因此您可以构建美观的命令行界面。 它带有用于处理终端和格式化文本的各种工具和实用程序。 与家庭中的其他图书馆最佳搭配: 终端访问 终端通过console::Term类型抽象。 它既可以直接提供对所连接终端的访问,也可以通过缓冲命令来提供访问。 但是,缓冲的终端将不会在当前直接通过光标移动的窗口上完全缓冲。 用法示例: use std :: thread; use std :: time :: Duration; use console :: Term; let term = Term :: stdout (); term. write_line ( "Hello World!" )?; thread :: sleep (Duration :: from_millis ( 2000 )); term. clear_line


【文件预览】:
console-master
----.gitignore(18B)
----README.md(2KB)
----CHANGELOG.md(751B)
----.github()
--------workflows()
----Cargo.toml(995B)
----examples()
--------cursor_at.rs(695B)
--------term.rs(812B)
--------colors256.rs(325B)
--------colors.rs(382B)
----LICENSE(1KB)
----src()
--------wasm_term.rs(751B)
--------windows_term.rs(20KB)
--------kb.rs(510B)
--------ansi.rs(4KB)
--------lib.rs(3KB)
--------unix_term.rs(9KB)
--------term.rs(17KB)
--------utils.rs(24KB)
--------common_term.rs(1KB)

网友评论