pub enum LigTable {
Label(SingleValue<LigTableLabel>),
Lig(PostLigOperation, TupleValue<Char, Char>),
Kern(TupleValue<Char, FixWord>),
Stop(SingleValue<()>),
Skip(SingleValue<DecimalU8>),
Comment(String),
}
Expand description
An element of a LIGTABLE
property list.
A lig table property list contains elements of four kinds, specifying a program in a simple command language that TeX uses for ligatures and kerns. If several lig table lists appear, they are effectively concatenated into a single list.
The documentation here and on each variant is based on the documentation in PFtoTF.2014.13.
Variants§
Label(SingleValue<LigTableLabel>)
A label specifies that the program for the stated character value starts here.
The integer must be the number of a character in the font;
its CHARACTER
property list must not have a NEXTLARGER
or VARCHAR
field.
At least one LIG
or KRN
step must follow.
LABEL BOUNDARYCHAR
means that the program for beginning-of-word ligatures starts here.
Lig(PostLigOperation, TupleValue<Char, Char>)
The instruction (LIG c r)
means,
“If the next character is c,
then insert character r and possibly delete the current character and/or c;
otherwise go on to the next instruction.”
Characters r and c must be present in the font.
The LIG
keyword may be immediately preceded or followed by a slash,
and then immediately followed by > characters not exceeding the number of slashes.
Thus there are eight possible forms:
keyword | retain | move to | PostLigOperation value |
---|---|---|---|
LIG | neither | inserted | PostLigOperation::RetainNeitherMoveToInserted |
/LIG | left | left | PostLigOperation::RetainLeftMoveNowhere |
/LIG> | left | inserted | PostLigOperation::RetainLeftMoveToInserted |
LIG/ | right | inserted | PostLigOperation::RetainRightMoveToInserted |
LIG/> | right | right | PostLigOperation::RetainRightMoveToRight |
/LIG/ | both | left | PostLigOperation::RetainBothMoveToInserted |
/LIG/> | both | inserted | PostLigOperation::RetainBothMoveToInserted |
/LIG/>> | both | right | PostLigOperation::RetainBothMoveToRight |
The slashes specify retention of the left or right original character; the > signs specify passing over the result without further ligature processing.
Kern(TupleValue<Char, FixWord>)
A kern instruction (KRN c r)
means,
“If the next character is c, then insert a blank space of width r between the current character and c;
otherwise go on to the next instruction.”
The value of r, which is in design units, is often negative.
Character code c must exist in the font.
Stop(SingleValue<()>)
A stop instruction ends a ligature/kern program.
It must follow either a LIG
or KRN
instruction, not a LABEL
or STOP
or SKIP
.
Skip(SingleValue<DecimalU8>)
A skip instruction specifies continuation of a ligature/kern program after the specified number of LIG or KRN steps has been skipped over. The number of subsequent LIG and KRN instructions must therefore exceed this specified amount.
Comment(String)
A comment that is ignored.
Implementations§
source§impl LigTable
impl LigTable
pub const LABEL: &'static str = "LABEL"
pub const LIG_1: &'static str = "LIG"
pub const LIG_2: &'static str = "/LIG"
pub const LIG_3: &'static str = "/LIG>"
pub const LIG_4: &'static str = "LIG/"
pub const LIG_5: &'static str = "LIG/>"
pub const LIG_6: &'static str = "/LIG/"
pub const LIG_7: &'static str = "/LIG/>"
pub const LIG_8: &'static str = "/LIG/>>"
pub const KERN: &'static str = "KRN"
pub const STOP: &'static str = "STOP"
pub const SKIP: &'static str = "SKIP"
pub const ALL_PROPERTY_NAMES: &'static [&'static str] = _
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for LigTable
impl<'arbitrary> Arbitrary<'arbitrary> for LigTable
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 LigTable
impl StructuralPartialEq for LigTable
Auto Trait Implementations§
impl Freeze for LigTable
impl RefUnwindSafe for LigTable
impl Send for LigTable
impl Sync for LigTable
impl Unpin for LigTable
impl UnwindSafe for LigTable
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);