pub enum GuidePageGeneration {
Generated,
Html,
Markdown,
Xml,
}Expand description
GuidePageGeneration. A code that indicates how the page is generated.
FHIR version: 5.0.0.
Variants§
Generated
generated
Generated. Page will be generated by the publication process - no source to bring across.
Html
html
HTML. Page is proper xhtml with no templating. Will be brought across unchanged for standard post-processing.
Markdown
markdown
Markdown. Page is markdown with templating. Will use the template to create a file that imports the markdown file prior to post-processing.
Xml
xml
XML. Page is xml with templating. Will use the template to create a file that imports the source file and run the nominated XSLT transform (see parameters) if present prior to post-processing.
Trait Implementations§
Source§impl AsRef<str> for GuidePageGeneration
impl AsRef<str> for GuidePageGeneration
Source§impl Clone for GuidePageGeneration
impl Clone for GuidePageGeneration
Source§fn clone(&self) -> GuidePageGeneration
fn clone(&self) -> GuidePageGeneration
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 moreSource§impl Debug for GuidePageGeneration
impl Debug for GuidePageGeneration
Source§impl<'de> Deserialize<'de> for GuidePageGeneration
impl<'de> Deserialize<'de> for GuidePageGeneration
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 GuidePageGeneration
impl Display for GuidePageGeneration
Source§impl From<GuidePageGeneration> for CodeableConcept
impl From<GuidePageGeneration> for CodeableConcept
Source§fn from(code: GuidePageGeneration) -> Self
fn from(code: GuidePageGeneration) -> Self
Converts to this type from the input type.
Source§impl From<GuidePageGeneration> for Coding
impl From<GuidePageGeneration> for Coding
Source§fn from(code: GuidePageGeneration) -> Self
fn from(code: GuidePageGeneration) -> Self
Converts to this type from the input type.
Source§impl FromStr for GuidePageGeneration
impl FromStr for GuidePageGeneration
Source§impl Hash for GuidePageGeneration
impl Hash for GuidePageGeneration
Source§impl PartialEq for GuidePageGeneration
impl PartialEq for GuidePageGeneration
Source§fn eq(&self, other: &GuidePageGeneration) -> bool
fn eq(&self, other: &GuidePageGeneration) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GuidePageGeneration
impl Serialize for GuidePageGeneration
impl Copy for GuidePageGeneration
impl Eq for GuidePageGeneration
impl StructuralPartialEq for GuidePageGeneration
Auto Trait Implementations§
impl Freeze for GuidePageGeneration
impl RefUnwindSafe for GuidePageGeneration
impl Send for GuidePageGeneration
impl Sync for GuidePageGeneration
impl Unpin for GuidePageGeneration
impl UnsafeUnpin for GuidePageGeneration
impl UnwindSafe for GuidePageGeneration
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