pub enum AccentKind {
Hat,
Bar,
Dot,
DoubleDot,
Tilde,
Vec,
}Expand description
The kind of accent mark in an EqNode::Accent node.
Variants§
Hat
\hat{x} — circumflex above.
Bar
\bar{x} or \overline{x} — horizontal bar above.
Dot
\dot{x} — single dot above.
DoubleDot
\ddot{x} — double dot (diaeresis) above.
Tilde
\tilde{x} — tilde above.
Vec
\vec{v} — right arrow above.
Trait Implementations§
Source§impl Clone for AccentKind
impl Clone for AccentKind
Source§fn clone(&self) -> AccentKind
fn clone(&self) -> AccentKind
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 AccentKind
impl Debug for AccentKind
impl Copy for AccentKind
Auto Trait Implementations§
impl Freeze for AccentKind
impl RefUnwindSafe for AccentKind
impl Send for AccentKind
impl Sync for AccentKind
impl Unpin for AccentKind
impl UnsafeUnpin for AccentKind
impl UnwindSafe for AccentKind
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