Module texcraft_stdext::color
source · Expand description
Terminal coloring
The Texcraft project uses the
Colored crate for terminal coloring.
However, per Texcraft’s dependency policy,
use of this crate must be behind a Cargo feature.
In the case of Colored, the Cargo feature is color
.
This module implements the Cargo feature.
The module contains a single trait Colorize
.
When the Cargo feature is enabled, this trait is essentially identical to
the Colored crate’s Colorize
trait.
Specifically, it just forwards all method calls to the Colored crate.
When the Cargo feature is disabled, the trait is a no-op.
In both cases, downstream code can just call methods on the trait:
use texcraft_stdext::color::Colorize;
println!["{}", "Hello, World".bold().bright_red()];
Traits§
- Trait that provides coloring methods on strings.