Skip to main content

FontSlot

Enum FontSlot 

Source
pub enum FontSlot {
    Mono,
    Sans,
    Display,
}
Expand description

Layer 0 of the font model, re-exported for the same one-dependency reason.

A build script composing an override needs all four names and has no other reason to depend on makeover directly. A slot in the house font vocabulary — the unit an override replaces.

Three, and the third is deliberately empty by default: display is the brand tier, it has no house answer, and a product that does not override it leaves the token undefined so whatever the consumer wrote as a fallback renders. The MNW embeds rely on exactly that.

Variants§

§

Mono

Code, data, identifiers, cell grids. FONT_MONO by default.

§

Sans

Body and UI text: everything that is not mono or brand. FONT_SANS.

§

Display

The brand / display tier. No house default, per cdf8ac09.

Implementations§

Source§

impl FontSlot

Source

pub const ALL: [FontSlot; 3]

Every slot, in the order they are emitted.

Source

pub fn token(self) -> &'static str

The custom property this slot is read through.

Source

pub fn house_default(self) -> Option<&'static str>

The house stack, or None for the brand tier.

Source

pub fn house_face(self) -> Option<FontFace>

The house face behind that stack, or None for the brand tier.

The counterpart of house_default, and the same split as Typography::resolve against Typography::faces: one names the family that wins, the other names the file behind it. The house tier was a format string until this existed, so it could be emitted and not read — which made Typography::faces answer for the brand tier and stay silent about the other two.

The sources are the web copies, and that is the whole of what the house tier ships today. A renderer loading a face directly wants a ttf, and there is no house ttf under any name to hand it.

Trait Implementations§

Source§

impl Clone for FontSlot

Source§

fn clone(&self) -> FontSlot

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for FontSlot

Source§

impl Debug for FontSlot

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Eq for FontSlot

Source§

impl Hash for FontSlot

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for FontSlot

Source§

fn eq(&self, other: &FontSlot) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for FontSlot

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.