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() -> OutputFormat
pub fn default_pdf() -> OutputFormat
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 copy 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§fn default() -> OutputFormat
fn default() -> OutputFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputFormat
impl<'de> Deserialize<'de> for OutputFormat
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputFormat, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputFormat, <__D as Deserializer<'de>>::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§type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<OutputFormat, <OutputFormat as FromStr>::Err>
fn from_str(s: &str) -> Result<OutputFormat, <OutputFormat as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§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§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<&str> for OutputFormat
impl TryFrom<&str> for OutputFormat
Source§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
Source§fn try_from(
s: &str,
) -> Result<OutputFormat, <OutputFormat as TryFrom<&str>>::Error>
fn try_from( s: &str, ) -> Result<OutputFormat, <OutputFormat as TryFrom<&str>>::Error>
Performs the conversion.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.