pub struct MathFontStyle<ET: EngineTypes> {
pub style: MathStyleType,
pub cramped: bool,
pub font: ET::Font,
}Expand description
A resolved math font style. This is the state after the math list has been constructed. Has a definite style and font.
Fields§
§style: MathStyleType§cramped: bool§font: ET::FontImplementations§
Source§impl<ET: EngineTypes> MathFontStyle<ET>
impl<ET: EngineTypes> MathFontStyle<ET>
Trait Implementations§
Source§impl<ET: Clone + EngineTypes> Clone for MathFontStyle<ET>
impl<ET: Clone + EngineTypes> Clone for MathFontStyle<ET>
Source§fn clone(&self) -> MathFontStyle<ET>
fn clone(&self) -> MathFontStyle<ET>
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<ET: Debug + EngineTypes> Debug for MathFontStyle<ET>
impl<ET: Debug + EngineTypes> Debug for MathFontStyle<ET>
Source§impl<ET: EngineTypes> MathFontStyleT<ET> for MathFontStyle<ET>
impl<ET: EngineTypes> MathFontStyleT<ET> for MathFontStyle<ET>
Source§type Choice = ResolvedChoice<ET>
type Choice = ResolvedChoice<ET>
The type of the choice node, which is either
UnresolvedMathChoice or ResolvedChoice.Source§type Markers = PhantomData<ET>
type Markers = PhantomData<ET>
The type of the markers, which is either
UnresolvedMarkers or a dummy that never occurs.Auto Trait Implementations§
impl<ET> Freeze for MathFontStyle<ET>
impl<ET> RefUnwindSafe for MathFontStyle<ET>
impl<ET> Send for MathFontStyle<ET>
impl<ET> Sync for MathFontStyle<ET>
impl<ET> Unpin for MathFontStyle<ET>
impl<ET> UnsafeUnpin for MathFontStyle<ET>
impl<ET> UnwindSafe for MathFontStyle<ET>
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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