pub enum DelimiterType {
Open,
Fence,
Close,
}
Expand description
Whether the delimiter is an opening, closing, or fence delimiter.
Variants§
Open
Corresponds to the left delimiter.
Fence
Corresponds to a delimiter that is introduced by the command \middle
.
Close
Corresponds to the right delimiter.
Trait Implementations§
Source§impl Clone for DelimiterType
impl Clone for DelimiterType
Source§fn clone(&self) -> DelimiterType
fn clone(&self) -> DelimiterType
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 DelimiterType
impl Debug for DelimiterType
Source§impl PartialEq for DelimiterType
impl PartialEq for DelimiterType
impl Copy for DelimiterType
impl StructuralPartialEq for DelimiterType
Auto Trait Implementations§
impl Freeze for DelimiterType
impl RefUnwindSafe for DelimiterType
impl Send for DelimiterType
impl Sync for DelimiterType
impl Unpin for DelimiterType
impl UnwindSafe for DelimiterType
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