pub struct MathMLOperator(/* private fields */);Expand description
A character for use in MathML <mo> elements.
LaTeX’s operator classes cannot be mapped cleanly to MathML’s <mo> vs <mi> distinction.
Some characters that are in class 0 in LaTeX are nevertheless rendered as <mo> in MathML.
Implementations§
Trait Implementations§
Source§impl Clone for MathMLOperator
impl Clone for MathMLOperator
Source§fn clone(&self) -> MathMLOperator
fn clone(&self) -> MathMLOperator
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 MathMLOperator
impl Debug for MathMLOperator
Source§impl From<&MathMLOperator> for char
impl From<&MathMLOperator> for char
Source§fn from(op: &MathMLOperator) -> Self
fn from(op: &MathMLOperator) -> Self
Converts to this type from the input type.
Source§impl From<MathMLOperator> for char
impl From<MathMLOperator> for char
Source§fn from(op: MathMLOperator) -> Self
fn from(op: MathMLOperator) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MathMLOperator
impl PartialEq for MathMLOperator
impl Copy for MathMLOperator
impl Eq for MathMLOperator
impl StructuralPartialEq for MathMLOperator
Auto Trait Implementations§
impl Freeze for MathMLOperator
impl RefUnwindSafe for MathMLOperator
impl Send for MathMLOperator
impl Sync for MathMLOperator
impl Unpin for MathMLOperator
impl UnwindSafe for MathMLOperator
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