pub enum ManSourceFormat {
Markdown,
Verbatim,
}Expand description
The format of the source file for a man page.
Variants§
Markdown
The man page source is written in Markdown, and needs to be rendered before installation.
Verbatim
The man page source is to be installed verbatim.
Trait Implementations§
Source§impl Clone for ManSourceFormat
impl Clone for ManSourceFormat
Source§fn clone(&self) -> ManSourceFormat
fn clone(&self) -> ManSourceFormat
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 ManSourceFormat
impl Debug for ManSourceFormat
Source§impl PartialEq for ManSourceFormat
impl PartialEq for ManSourceFormat
impl Copy for ManSourceFormat
impl Eq for ManSourceFormat
impl StructuralPartialEq for ManSourceFormat
Auto Trait Implementations§
impl Freeze for ManSourceFormat
impl RefUnwindSafe for ManSourceFormat
impl Send for ManSourceFormat
impl Sync for ManSourceFormat
impl Unpin for ManSourceFormat
impl UnwindSafe for ManSourceFormat
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