pub struct File {Show 13 fields
pub header: Header,
pub smallest_char: Char,
pub char_dimens: BTreeMap<Char, CharDimensions>,
pub char_tags: BTreeMap<Char, CharTag>,
pub unset_char_tags: BTreeMap<Char, u8>,
pub widths: Vec<FixWord>,
pub heights: Vec<FixWord>,
pub depths: Vec<FixWord>,
pub italic_corrections: Vec<FixWord>,
pub lig_kern_program: Program,
pub kerns: Vec<FixWord>,
pub extensible_chars: Vec<ExtensibleRecipe>,
pub params: Vec<FixWord>,
}
Expand description
Complete contents of a TeX font metric (.tfm) file.
The struct contain multiple vectors. In TeX and TFtoPL there is an optimization in which all of data in the vectors is stored in one large vector of 32-bit integers. The conversion from u32 to the specific types like FixWord are then done when the data is needed. This makes the memory footprint of this type much more compact, and such a change may be considered in the future.
In fact in TeX the font data for all fonts is stored in one contiguous piece of memory
(font_info
, defined in TeX82.2021.549).
This is a little too unsafe to pull off though.
Fields§
§header: Header
Header.
smallest_char: Char
Smallest character in the .tfm.
char_dimens: BTreeMap<Char, CharDimensions>
Character dimensions.
Character tags.
Note there is no correlation between a character having a tag and a character having a dimension. All four combinations of (has or hasn’t dimensions) and (has or hasn’t a tag) are possible.
Tags that have been unset, but whose discriminant is still written to a .tfm file by PLtoTF.
widths: Vec<FixWord>
Character widths
heights: Vec<FixWord>
Character heights
depths: Vec<FixWord>
Character depths
italic_corrections: Vec<FixWord>
Character italic corrections
lig_kern_program: Program
Lig kern program.
kerns: Vec<FixWord>
Kerns. These are referenced from inside the lig kern commands.
extensible_chars: Vec<ExtensibleRecipe>
Extensible characters.
params: Vec<FixWord>
Font parameters.
Implementations§
source§impl File
impl File
pub fn from_raw_file(raw_file: &RawFile<'_>) -> Self
pub fn validate_and_fix(&mut self) -> Vec<ValidationWarning>
pub fn deserialize( b: &[u8], ) -> (Result<File, DeserializationError>, Vec<DeserializationWarning>)
pub fn serialize(&self) -> Vec<u8>
sourcepub fn lig_kern_entrypoints(&self) -> HashMap<Char, u8>
pub fn lig_kern_entrypoints(&self) -> HashMap<Char, u8>
Return a map from characters to the lig/kern entrypoint for that character. TODO: can probably return impl Iterator<Item=(Char, u8)>
Trait Implementations§
impl Eq for File
impl StructuralPartialEq for File
Auto Trait Implementations§
impl Freeze for File
impl RefUnwindSafe for File
impl Send for File
impl Sync for File
impl Unpin for File
impl UnwindSafe for File
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§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);