#[repr(C)]pub enum InlineCommandStyle {
    Bold = 1,
    Monospace = 2,
    Emphasized = 3,
}Expand description
Indicates the appropriate rendering style for an inline command argument.
Variants§
Bold = 1
Indicates the command should be rendered in a bold font.
Monospace = 2
Indicates the command should be rendered in a monospace font.
Emphasized = 3
Indicates the command should be rendered emphasized (typically italicized).
Trait Implementations§
Source§impl Clone for InlineCommandStyle
 
impl Clone for InlineCommandStyle
Source§fn clone(&self) -> InlineCommandStyle
 
fn clone(&self) -> InlineCommandStyle
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 InlineCommandStyle
 
impl Debug for InlineCommandStyle
Source§impl Hash for InlineCommandStyle
 
impl Hash for InlineCommandStyle
Source§impl PartialEq for InlineCommandStyle
 
impl PartialEq for InlineCommandStyle
impl Copy for InlineCommandStyle
impl Eq for InlineCommandStyle
impl StructuralPartialEq for InlineCommandStyle
Auto Trait Implementations§
impl Freeze for InlineCommandStyle
impl RefUnwindSafe for InlineCommandStyle
impl Send for InlineCommandStyle
impl Sync for InlineCommandStyle
impl Unpin for InlineCommandStyle
impl UnwindSafe for InlineCommandStyle
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