#[non_exhaustive]pub enum LineType {
Overline,
StrikeThrough,
Underline,
}Expand description
What kind of lind are we trying to produce?
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.
Overline
This is an overline.
StrikeThrough
This is a strike-through.
Underline
This is an underline.
Trait Implementations§
Source§impl PartialOrd for LineType
impl PartialOrd for LineType
impl Copy for LineType
impl StructuralPartialEq for LineType
Auto Trait Implementations§
impl Freeze for LineType
impl RefUnwindSafe for LineType
impl Send for LineType
impl Sync for LineType
impl Unpin for LineType
impl UnwindSafe for LineType
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