pub enum Root {
Show 13 variants
Checksum(SingleValue<u32>),
DesignSize(SingleValue<DesignSize>),
DesignUnits(SingleValue<FixWord>),
CodingScheme(SingleValue<String>),
Family(SingleValue<String>),
Face(SingleValue<Face>),
SevenBitSafeFlag(SingleValue<bool>),
Header(TupleValue<DecimalU8, u32>),
FontDimension(Branch<(), FontDimension>),
LigTable(Branch<(), LigTable>),
BoundaryChar(SingleValue<Char>),
Character(Branch<Char, Character>),
Comment(String),
}
Expand description
A root node in a property list file.
The documentation on each variant is based on the documentation in PFtoTF.2014.9.
Variants§
Checksum(SingleValue<u32>)
The checksum value is used to identify a particular version of a font; it should match the check sum value stored with the font itself. An explicit check sum of zero is used to bypass check sum testing. If no checksum is specified in the PL file, PLtoTF will compute the checksum that METAFONT would compute from the same data
DesignSize(SingleValue<DesignSize>)
The design size, which should be in the range, [1.0, 2048)
,
represents the default amount by which all quantities will be scaled
if the font is not loaded with an at
specification.
For example, if one says \font\A=cmr10 at 15pt
in TeX language,
the design size in the TFM file is ignored and effectively replaced by 15 points;
but if one simply says \font\A=cmr10
the stated design size is used.
This quantity is always in units of printer’s points.
DesignUnits(SingleValue<FixWord>)
The design units specifies how many units equals the design size
(or the eventual ‘at’ size, if the font is being scaled).
For example, suppose
you have a font that has been digitized with 600 pixels per em,
and the design size is one em;
then you could say (DESIGNUNITS R 600)
if you wanted to give all of your measurements in units of pixels.
CodingScheme(SingleValue<String>)
A string that identifies the correspondence between the numeric codes and font characters. Its length must be less than 40. (TeX ignores this information, but other software programs make use of it.)
Family(SingleValue<String>)
A string that identifies the name of the family to which this font belongs, e.g., ‘HELVETICA’. Its length must be less than 20. (TeX ignores this information; but it is needed, for example, when converting DVI files to PRESS files for Xerox equipment.)
Face(SingleValue<Face>)
This value is a subsidiary identification of the font within its family. For example, bold italic condensed fonts might have the same family name as light roman extended fonts, differing only in their face byte. (TeX ignores this information; but it is needed, for example, when converting DVI files to PRESS files for Xerox equipment.)
SevenBitSafeFlag(SingleValue<bool>)
If true, character codes less than 128 cannot lead to codes of 128 or more via ligatures or char lists or extensible characters. (TeX82 ignores this flag, but older versions of TeX would only accept TFM files that were seven-bit safe.) PLtoTF computes the correct value of this flag and gives an error message only if a claimed “true” value is incorrect.
Header(TupleValue<DecimalU8, u32>)
Value of a header.
The one-byte value should be at least 18.
The four-byte value goes into the header word whose index is the one-byte value;
for example, to set header[18]=1
, one may write (HEADER D 18 O 1)
.
This notation is used for header information that is presently unnamed.
(TeX ignores it.)
FontDimension(Branch<(), FontDimension>)
Font dimensions property list.
LigTable(Branch<(), LigTable>)
A lig table.
BoundaryChar(SingleValue<Char>)
If the boundary character appears in a lig table command (LIGTABLE
),
it matches “end of word” as well as itself.
If no boundary character is given and no LABEL BOUNDARYCHAR
occurs within a lig table,
word boundaries will not affect ligatures or kerning.
Character(Branch<Char, Character>)
Metrics for a character in the font.
The value specifies the character and
the property list of Character
nodes specifies metrics for the character.
Comment(String)
A comment that is ignored.
Implementations§
source§impl Root
impl Root
pub const CHECKSUM: &'static str = "CHECKSUM"
pub const DESIGN_SIZE: &'static str = "DESIGNSIZE"
pub const DESIGN_UNITS: &'static str = "DESIGNUNITS"
pub const CODING_SCHEME: &'static str = "CODINGSCHEME"
pub const FAMILY: &'static str = "FAMILY"
pub const FACE: &'static str = "FACE"
pub const SEVEN_BIT_SAFE_FLAG: &'static str = "SEVENBITSAFEFLAG"
pub const HEADER: &'static str = "HEADER"
pub const FONT_DIMENSION: &'static str = "FONTDIMEN"
pub const LIG_TABLE: &'static str = "LIGTABLE"
pub const BOUNDARY_CHAR: &'static str = "BOUNDARYCHAR"
pub const CHARACTER: &'static str = "CHARACTER"
pub const ALL_PROPERTY_NAMES: &'static [&'static str] = _
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for Root
impl<'arbitrary> Arbitrary<'arbitrary> for Root
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Self
from the entirety of the given
unstructured data. Read moreimpl Eq for Root
impl StructuralPartialEq for Root
Auto Trait Implementations§
impl Freeze for Root
impl RefUnwindSafe for Root
impl Send for Root
impl Sync for Root
impl Unpin for Root
impl UnwindSafe for Root
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling [Attribute
] value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
[Quirk
] value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the [Condition
] value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);