pub enum UnderOverAttr {
AccentUnder,
AccentOver,
Global(Attribute),
}Expand description
The munderover element accepts global attributes as well as accent and accentunder.
Similarly, the mover element (respectively munder element) accepts global attributes as
well as the accent attribute (respectively the accentunder attribute).
accent, accentunder attributes, if present, must have values that are booleans. If these
attributes are absent or invalid, they are treated as equal to false.
Variants§
AccentUnder
Indicates whether the under script should be treated as an accent (i.e. drawn bigger and closer to the base expression).
AccentOver
Indicates whether the over script should be treated as an accent (i.e. drawn bigger and closer to the base expression).
Global(Attribute)
One of the global Attributes.
Trait Implementations§
Source§impl Clone for UnderOverAttr
impl Clone for UnderOverAttr
Source§fn clone(&self) -> UnderOverAttr
fn clone(&self) -> UnderOverAttr
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 moreSource§impl Debug for UnderOverAttr
impl Debug for UnderOverAttr
impl Eq for UnderOverAttr
Source§impl Ord for UnderOverAttr
impl Ord for UnderOverAttr
Source§fn cmp(&self, other: &UnderOverAttr) -> Ordering
fn cmp(&self, other: &UnderOverAttr) -> Ordering
1.21.0 (const: unstable) · 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 UnderOverAttr
impl PartialEq for UnderOverAttr
Source§fn eq(&self, other: &UnderOverAttr) -> bool
fn eq(&self, other: &UnderOverAttr) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for UnderOverAttr
impl PartialOrd for UnderOverAttr
impl StructuralPartialEq for UnderOverAttr
Auto Trait Implementations§
impl Freeze for UnderOverAttr
impl RefUnwindSafe for UnderOverAttr
impl Send for UnderOverAttr
impl Sync for UnderOverAttr
impl Unpin for UnderOverAttr
impl UnsafeUnpin for UnderOverAttr
impl UnwindSafe for UnderOverAttr
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