pub enum ItalicStyle {
Asterisk,
Underscore,
Preserve,
}Expand description
Italic delimiter normalisation policy. Defaults to Preserve:
structural emit preserves each run’s source delimiter. Fixed
variants are consumed only by the canonicalisation post-pass.
Variants§
Trait Implementations§
Source§impl Clone for ItalicStyle
impl Clone for ItalicStyle
Source§fn clone(&self) -> ItalicStyle
fn clone(&self) -> ItalicStyle
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 moreSource§impl Debug for ItalicStyle
impl Debug for ItalicStyle
Source§impl PartialEq for ItalicStyle
impl PartialEq for ItalicStyle
Source§fn eq(&self, other: &ItalicStyle) -> bool
fn eq(&self, other: &ItalicStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ItalicStyle
impl Eq for ItalicStyle
impl StructuralPartialEq for ItalicStyle
Auto Trait Implementations§
impl Freeze for ItalicStyle
impl RefUnwindSafe for ItalicStyle
impl Send for ItalicStyle
impl Sync for ItalicStyle
impl Unpin for ItalicStyle
impl UnsafeUnpin for ItalicStyle
impl UnwindSafe for ItalicStyle
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