pub enum Escaping {
Normal,
InlineCode,
}
Expand description
Specifies string escaping mode
Variants§
Normal
\`*_{}[]()#+-.!
will be escaped with a backslash
InlineCode
Inline code will be surrounded by enough backticks to escape the contents
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Escaping
impl RefUnwindSafe for Escaping
impl Send for Escaping
impl Sync for Escaping
impl Unpin for Escaping
impl UnwindSafe for Escaping
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