pub enum PdfContent {
Decision(Decision),
Knowledge(KnowledgeArticle),
Markdown {
title: String,
content: String,
},
}Expand description
PDF document content types
Variants§
Decision(Decision)
Architecture Decision Record
Knowledge(KnowledgeArticle)
Knowledge Base article
Markdown
Raw markdown content
Trait Implementations§
Source§impl Clone for PdfContent
impl Clone for PdfContent
Source§fn clone(&self) -> PdfContent
fn clone(&self) -> PdfContent
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 PdfContent
impl Debug for PdfContent
Source§impl<'de> Deserialize<'de> for PdfContent
impl<'de> Deserialize<'de> for PdfContent
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
Auto Trait Implementations§
impl Freeze for PdfContent
impl RefUnwindSafe for PdfContent
impl Send for PdfContent
impl Sync for PdfContent
impl Unpin for PdfContent
impl UnwindSafe for PdfContent
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