Type 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.