pub struct MathVariantStyle {
pub italic: String,
pub bold_italic: String,
pub roman: String,
pub bold_roman: String,
pub script: String,
pub bold_script: String,
pub fraktur: String,
pub bold_fraktur: String,
pub double_struck: String,
}Expand description
math-variant-char’s 9-field per-style codepoint record
(math.satyh’s greek-lowercase/greek-uppercase build one per Greek
letter). Field order/names mirror the record literal math.satyh
constructs.
Fields§
§italic: String§bold_italic: String§roman: String§bold_roman: String§script: String§bold_script: String§fraktur: String§bold_fraktur: String§double_struck: StringTrait Implementations§
Source§impl Clone for MathVariantStyle
impl Clone for MathVariantStyle
Source§fn clone(&self) -> MathVariantStyle
fn clone(&self) -> MathVariantStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MathVariantStyle
impl RefUnwindSafe for MathVariantStyle
impl Send for MathVariantStyle
impl Sync for MathVariantStyle
impl Unpin for MathVariantStyle
impl UnsafeUnpin for MathVariantStyle
impl UnwindSafe for MathVariantStyle
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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