#[non_exhaustive]pub enum RdEquationDisplay {
Inline,
Block,
}Expand description
Whether an equation is rendered inline by \eqn or as a block by \deqn.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for RdEquationDisplay
impl Clone for RdEquationDisplay
Source§fn clone(&self) -> RdEquationDisplay
fn clone(&self) -> RdEquationDisplay
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 moreimpl Copy for RdEquationDisplay
Source§impl Debug for RdEquationDisplay
impl Debug for RdEquationDisplay
impl Eq for RdEquationDisplay
Source§impl PartialEq for RdEquationDisplay
impl PartialEq for RdEquationDisplay
impl StructuralPartialEq for RdEquationDisplay
Auto Trait Implementations§
impl Freeze for RdEquationDisplay
impl RefUnwindSafe for RdEquationDisplay
impl Send for RdEquationDisplay
impl Sync for RdEquationDisplay
impl Unpin for RdEquationDisplay
impl UnsafeUnpin for RdEquationDisplay
impl UnwindSafe for RdEquationDisplay
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