Skip to main content

FontSelector

Struct FontSelector 

Source
pub struct FontSelector {
    pub family: FamilySelector,
    pub weight: FontWeight,
    pub width: FontWidth,
    pub style: FontStyle,
}
Expand description

A font face selection tool

This tool selects a font according to the given criteria from available system fonts. Selection criteria are based on CSS.

This can be converted from a FamilySelector, selecting the default styles.

Fields§

§family: FamilySelector

Family selector

§weight: FontWeight

Weight

§width: FontWidth

Width

§style: FontStyle

Italic / oblique style

Implementations§

Source§

impl FontSelector

Source

pub const EMOJI: Self

Hard-coded emoji font selector

Source

pub fn new() -> Self

Synonym for default

Without further parametrization, this will select a generic sans-serif font which should be suitable for most uses.

Source

pub fn format_css(&self) -> Option<String>

Format CSS-style

This is similar to the CSS font property, though it does not support size or variant or using relative or global values. Examples:

  • system-ui
  • italic bold expanded sans-serif
  • oblique 10deg 500 175% monospace
  • 300 cursive

Weight, width and style will be omitted if normal. Family is required and must be a single generic name.

Will return None if Self::family is not one of the generic families supported by FamilySelector.

Source

pub fn parse_css(s: &str) -> Option<Self>

Parse a CSS-style selector

Format support is similar to Self::format_css.

Does not (yet) support non-generic font families. TODO: write a nicer parser with real error detection!

Trait Implementations§

Source§

impl Clone for FontSelector

Source§

fn clone(&self) -> FontSelector

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for FontSelector

Source§

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

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

impl Default for FontSelector

Source§

fn default() -> FontSelector

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for FontSelector

Source§

fn deserialize<D: Deserializer<'de>>(de: D) -> Result<FontSelector, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<FamilySelector> for FontSelector

Source§

fn from(family: FamilySelector) -> Self

Converts to this type from the input type.
Source§

impl Hash for FontSelector

Source§

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

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 FontSelector

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for FontSelector

Source§

fn serialize<S: Serializer>(&self, ser: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for FontSelector

Source§

impl Eq for FontSelector

Source§

impl StructuralPartialEq for FontSelector

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<S, T> Cast<T> for S
where T: Conv<S>,

Source§

fn cast(self) -> T

Cast from Self to T Read more
Source§

fn try_cast(self) -> Result<T, Error>

Try converting from Self to T Read more
Source§

impl<S, T> CastApprox<T> for S
where T: ConvApprox<S>,

Source§

fn try_cast_approx(self) -> Result<T, Error>

Try approximate conversion from Self to T Read more
Source§

fn cast_approx(self) -> T

Cast approximately from Self to T Read more
Source§

impl<S, T> CastFloat<T> for S
where T: ConvFloat<S>,

Source§

fn cast_trunc(self) -> T

Cast to integer, truncating Read more
Source§

fn cast_nearest(self) -> T

Cast to the nearest integer Read more
Source§

fn cast_floor(self) -> T

Cast the floor to an integer Read more
Source§

fn cast_ceil(self) -> T

Cast the ceiling to an integer Read more
Source§

fn try_cast_trunc(self) -> Result<T, Error>

Try converting to integer with truncation Read more
Source§

fn try_cast_nearest(self) -> Result<T, Error>

Try converting to the nearest integer Read more
Source§

fn try_cast_floor(self) -> Result<T, Error>

Try converting the floor to an integer Read more
Source§

fn try_cast_ceil(self) -> Result<T, Error>

Try convert the ceiling to an integer 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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,