pub struct MathTable { /* private fields */ }
Expand description
The <mtable>
element allows you to create tables or matrices.
Its children are <mtr>
elements, representing rows.
Each of them having <mtd>
elements as its children, representing cells.
These elements are similar to <table>
, <tr>
and <td>
elements of HTML.
Implementations§
Trait Implementations§
Source§impl MathElement for MathTable
impl MathElement for MathTable
Source§fn add_attribute<K, V>(&mut self, key: K, value: V)
fn add_attribute<K, V>(&mut self, key: K, value: V)
Add an attribute to the operator.
Source§fn with_attribute<K, V>(self, key: K, value: V) -> Self
fn with_attribute<K, V>(self, key: K, value: V) -> Self
Add an attribute to the operator.
impl StructuralPartialEq for MathTable
Auto Trait Implementations§
impl Freeze for MathTable
impl RefUnwindSafe for MathTable
impl Send for MathTable
impl Sync for MathTable
impl Unpin for MathTable
impl UnwindSafe for MathTable
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