nu_ansi_termType Alias AnsiByteStrings
Source pub type AnsiByteStrings<'a> = AnsiGenericStrings<'a, [u8]>;
Expand description
A set of AnsiByteString
s collected together, in order to be
written with a minimum of control characters.
struct AnsiByteStrings<'a>(pub &'a [AnsiGenericString<'a, [u8]>]);
Write AnsiByteStrings
to an io::Write
. This writes the minimal
escape sequences for the associated Style
s around each set of
bytes.
Trait Implementations
Formats the value using the given formatter.
Read more
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.