pub enum OutputFormat {
Pdf {
engine: PdfEngine,
theme: Option<Theme>,
},
Docx {
theme: Option<Theme>,
},
Odt {
theme: Option<Theme>,
},
Markdown {
theme: Option<Theme>,
},
Commonmark {
theme: Option<Theme>,
},
CommonmarkX {
theme: Option<Theme>,
},
}
Expand description
Enum type for defining the possible output file formats
Variants§
The PDF file format
Fields
Docx
Microsoft Office Open XML docx format
Odt
OpenDocument Text format
Markdown
Markdown
Commonmark
CommonMark flavored Markdown
CommonmarkX
CommonMark flavored Markdown with pandoc extensions
Implementations§
Source§impl OutputFormat
impl OutputFormat
Sourcepub fn default_pdf() -> Self
pub fn default_pdf() -> Self
Create the PDF output format with the default configuration.
Trait Implementations§
Source§impl AsRef<str> for OutputFormat
impl AsRef<str> for OutputFormat
Source§impl Clone for OutputFormat
impl Clone for OutputFormat
Source§fn clone(&self) -> OutputFormat
fn clone(&self) -> OutputFormat
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 OutputFormat
impl Debug for OutputFormat
Source§impl Default for OutputFormat
impl Default for OutputFormat
Source§impl<'de> Deserialize<'de> for OutputFormat
impl<'de> Deserialize<'de> for OutputFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OutputFormat
impl Display for OutputFormat
Source§impl<'_derivative_strum> From<&'_derivative_strum OutputFormat> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum OutputFormat> for &'static str
Source§fn from(x: &'_derivative_strum OutputFormat) -> &'static str
fn from(x: &'_derivative_strum OutputFormat) -> &'static str
Converts to this type from the input type.
Source§impl From<OutputFormat> for &'static str
impl From<OutputFormat> for &'static str
Source§fn from(x: OutputFormat) -> &'static str
fn from(x: OutputFormat) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for OutputFormat
impl FromStr for OutputFormat
Source§impl IntoEnumIterator for OutputFormat
impl IntoEnumIterator for OutputFormat
Source§impl PartialEq for OutputFormat
impl PartialEq for OutputFormat
Source§impl Serialize for OutputFormat
impl Serialize for OutputFormat
Source§impl TryFrom<&str> for OutputFormat
impl TryFrom<&str> for OutputFormat
Source§impl VariantNames for OutputFormat
impl VariantNames for OutputFormat
impl Eq for OutputFormat
impl StructuralPartialEq for OutputFormat
Auto Trait Implementations§
impl Freeze for OutputFormat
impl RefUnwindSafe for OutputFormat
impl Send for OutputFormat
impl Sync for OutputFormat
impl Unpin for OutputFormat
impl UnwindSafe for OutputFormat
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