pub struct FaceInfo {
pub id: ID,
pub source: Source,
pub index: u32,
pub families: Vec<(String, Language)>,
pub post_script_name: String,
pub style: Style,
pub weight: Weight,
pub stretch: Width,
pub monospaced: bool,
}Expand description
A single font face info.
A font can have multiple faces.
A single item of the Database.
Fields§
§id: IDAn unique ID.
source: SourceA font source.
Note that multiple FaceInfo objects can reference the same data in case of
font collections, which means that they’ll use the same Source.
index: u32A face index in the source.
families: Vec<(String, Language)>A list of family names.
Contains pairs of Name + Language. Where the first family is always English US, unless it’s missing from the font.
Corresponds to a Typographic Family (ID 16) or a Font Family (ID 1) name ID in a TrueType font.
This is not an Extended Typographic Family or a Full Name. Meaning it will contain Arial and not Arial Bold.
post_script_name: StringA PostScript name.
Corresponds to a PostScript name (6) name ID in a TrueType font.
style: StyleA font face style.
weight: WeightA font face weight.
stretch: WidthA font face stretch.
monospaced: boolIndicates that the font face is monospaced.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FaceInfo
impl !RefUnwindSafe for FaceInfo
impl Send for FaceInfo
impl Sync for FaceInfo
impl Unpin for FaceInfo
impl !UnwindSafe for FaceInfo
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more