pub enum FontType {
Svg,
Ttf,
Eot,
Woff,
Woff2,
}Expand description
Font output format. Used in the types and order options to control which
formats are generated and the order they appear in the CSS @font-face
src: descriptor.
Variants§
Svg
SVG font (.svg). Legacy format; intermediate representation that all
other formats are derived from.
Ttf
TrueType font (.ttf).
Eot
Embedded OpenType (.eot). Legacy format for older Internet Explorer.
Woff
Web Open Font Format 1.0 (.woff).
Woff2
Web Open Font Format 2.0 (.woff2). Best compression; preferred for
modern browsers.
Implementations§
Source§impl FontType
impl FontType
Sourcepub fn css_format(self) -> &'static str
pub fn css_format(self) -> &'static str
Returns the CSS format() value (e.g., “truetype”, “woff2”).
Sourcepub fn as_extension(self) -> &'static str
pub fn as_extension(self) -> &'static str
Returns the file extension (e.g., “svg”, “ttf”, “woff2”).
Trait Implementations§
impl Copy for FontType
impl Eq for FontType
impl StructuralPartialEq for FontType
Auto Trait Implementations§
impl Freeze for FontType
impl RefUnwindSafe for FontType
impl Send for FontType
impl Sync for FontType
impl Unpin for FontType
impl UnsafeUnpin for FontType
impl UnwindSafe for FontType
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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>
Converts
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>
Converts
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.