pub enum LineThickness {
Thin,
Medium,
Thick,
Length(u8),
}
Expand description
Line thickness for <mfrac>
,
used as linethickness
attribute.
§Polyfill
We provide a polyfill for this attribute, which supports deprecated values thin
, medium
, thick
and length
.
Variants§
Trait Implementations§
Source§impl Clone for LineThickness
impl Clone for LineThickness
Source§fn clone(&self) -> LineThickness
fn clone(&self) -> LineThickness
Returns a copy 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 LineThickness
impl Debug for LineThickness
Source§impl Default for LineThickness
impl Default for LineThickness
Source§impl PartialEq for LineThickness
impl PartialEq for LineThickness
impl Copy for LineThickness
impl StructuralPartialEq for LineThickness
Auto Trait Implementations§
impl Freeze for LineThickness
impl RefUnwindSafe for LineThickness
impl Send for LineThickness
impl Sync for LineThickness
impl Unpin for LineThickness
impl UnwindSafe for LineThickness
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