pub enum DelimiterRole {
Open,
Close,
Fence,
}Expand description
Whether an atom is a genuinely pairable delimiter, independently of its TeX
spacing class. For example, \sqrt is Open but has no delimiter role.
Variants§
Trait Implementations§
Source§impl Clone for DelimiterRole
impl Clone for DelimiterRole
Source§fn clone(&self) -> DelimiterRole
fn clone(&self) -> DelimiterRole
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 DelimiterRole
Source§impl Debug for DelimiterRole
impl Debug for DelimiterRole
impl Eq for DelimiterRole
Source§impl Hash for DelimiterRole
impl Hash for DelimiterRole
Source§impl PartialEq for DelimiterRole
impl PartialEq for DelimiterRole
impl StructuralPartialEq for DelimiterRole
Auto Trait Implementations§
impl Freeze for DelimiterRole
impl RefUnwindSafe for DelimiterRole
impl Send for DelimiterRole
impl Sync for DelimiterRole
impl Unpin for DelimiterRole
impl UnsafeUnpin for DelimiterRole
impl UnwindSafe for DelimiterRole
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