pub enum ContentArg {
Markdown,
Text,
Html,
None,
}Expand description
Content extraction format, as selected on the command line.
Variants§
Trait Implementations§
Source§impl Clone for ContentArg
impl Clone for ContentArg
Source§fn clone(&self) -> ContentArg
fn clone(&self) -> ContentArg
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 moreimpl Copy for ContentArg
Source§impl Debug for ContentArg
impl Debug for ContentArg
Source§impl Default for ContentArg
impl Default for ContentArg
Source§fn default() -> ContentArg
fn default() -> ContentArg
Returns the “default value” for a type. Read more
Source§impl From<ContentArg> for ContentFormat
impl From<ContentArg> for ContentFormat
Source§fn from(c: ContentArg) -> Self
fn from(c: ContentArg) -> Self
Converts to this type from the input type.
Source§impl ValueEnum for ContentArg
impl ValueEnum for ContentArg
Auto Trait Implementations§
impl Freeze for ContentArg
impl RefUnwindSafe for ContentArg
impl Send for ContentArg
impl Sync for ContentArg
impl Unpin for ContentArg
impl UnsafeUnpin for ContentArg
impl UnwindSafe for ContentArg
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