pub enum InterpretedTextKind {
Default,
RoleThenContent,
ContentThenRole,
}Expand description
There are 3 types of interpreted inline text, such as math:
- where the given role precedes the interpreted content and
- where the interpreted content precedes the given role.
- where the type is not specified and the default role is used.
Variants§
Trait Implementations§
Source§impl Clone for InterpretedTextKind
impl Clone for InterpretedTextKind
Source§fn clone(&self) -> InterpretedTextKind
fn clone(&self) -> InterpretedTextKind
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 InterpretedTextKind
impl Debug for InterpretedTextKind
impl Copy for InterpretedTextKind
Auto Trait Implementations§
impl Freeze for InterpretedTextKind
impl RefUnwindSafe for InterpretedTextKind
impl Send for InterpretedTextKind
impl Sync for InterpretedTextKind
impl Unpin for InterpretedTextKind
impl UnwindSafe for InterpretedTextKind
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