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 · 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<GuidePageGeneration, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<GuidePageGeneration, <D as Deserializer<'de>>::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) -> CodeableConcept
fn from(code: GuidePageGeneration) -> CodeableConcept
Converts to this type from the input type.
Source§impl From<GuidePageGeneration> for Coding
impl From<GuidePageGeneration> for Coding
Source§fn from(code: GuidePageGeneration) -> Coding
fn from(code: GuidePageGeneration) -> Coding
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§impl Serialize for GuidePageGeneration
impl Serialize for GuidePageGeneration
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
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 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
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.