pub struct FontInstanceOptions {
pub render_mode: FontRenderMode,
pub flags: FontInstanceFlags,
pub bg_color: ColorU,
pub synthetic_italics: SyntheticItalics,
}Fields§
§render_mode: FontRenderMode§flags: FontInstanceFlags§bg_color: ColorU§synthetic_italics: SyntheticItalicsWhen bg_color.a is != 0 and render_mode is FontRenderMode::Subpixel, the text will be rendered with bg_color.r/g/b as an opaque estimated background color.
Trait Implementations§
Source§impl Clone for FontInstanceOptions
impl Clone for FontInstanceOptions
Source§fn clone(&self) -> FontInstanceOptions
fn clone(&self) -> FontInstanceOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FontInstanceOptions
impl Debug for FontInstanceOptions
Source§impl Default for FontInstanceOptions
impl Default for FontInstanceOptions
Source§fn default() -> FontInstanceOptions
fn default() -> FontInstanceOptions
Returns the “default value” for a type. Read more
Source§impl Hash for FontInstanceOptions
impl Hash for FontInstanceOptions
Source§impl Ord for FontInstanceOptions
impl Ord for FontInstanceOptions
Source§fn cmp(&self, other: &FontInstanceOptions) -> Ordering
fn cmp(&self, other: &FontInstanceOptions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FontInstanceOptions
impl PartialEq for FontInstanceOptions
Source§impl PartialOrd for FontInstanceOptions
impl PartialOrd for FontInstanceOptions
impl Copy for FontInstanceOptions
impl Eq for FontInstanceOptions
impl StructuralPartialEq for FontInstanceOptions
Auto Trait Implementations§
impl Freeze for FontInstanceOptions
impl RefUnwindSafe for FontInstanceOptions
impl Send for FontInstanceOptions
impl Sync for FontInstanceOptions
impl Unpin for FontInstanceOptions
impl UnwindSafe for FontInstanceOptions
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<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 more