pub enum GuideParameterCode {
Apply,
ExpansionParameter,
GenerateJson,
GenerateTurtle,
GenerateXml,
HtmlTemplate,
PathPages,
PathResource,
PathTxCache,
RuleBrokenLinks,
_Custom(String),
}
Expand description
GuideParameterCode. GuideParameterCode
FHIR version: 5.0.0.
Variants§
Apply
apply
Apply Metadata Value. If the value of this string 0..* parameter is one of the metadata fields then all conformance resources will have any specified [Resource].[field] overwritten with the ImplementationGuide.[field], where field is one of: version, date, status, publisher, contact, copyright, experimental, jurisdiction, useContext.
ExpansionParameter
expansion-parameter
Expansion Profile. The value of this string 0..* parameter is a parameter (name=value) when expanding value sets for this implementation guide. This is particularly used to specify the versions of published terminologies such as SNOMED CT.
GenerateJson
generate-json
Generate JSON. The value of this boolean 0..1 parameter specifies whether the IG publisher creates examples in JSON format. If not present, the Publication Tool decides whether to generate JSON.
GenerateTurtle
generate-turtle
Generate Turtle. The value of this boolean 0..1 parameter specifies whether the IG publisher creates examples in Turtle format. If not present, the Publication Tool decides whether to generate Turtle.
GenerateXml
generate-xml
Generate XML. The value of this boolean 0..1 parameter specifies whether the IG publisher creates examples in XML format. If not present, the Publication Tool decides whether to generate XML.
HtmlTemplate
html-template
HTML Template. The value of this string singleton parameter is the name of the file to use as the builder template for each generated page (see templating).
PathPages
path-pages
Pages Path. The value of this string 0..1 parameter is a subfolder of the build context’s location that contains files that are part of the html content processed by the builder.
PathResource
path-resource
Resource Path. The value of this string 0..* parameter is a subfolder of the build context’s location that is to be scanned to load resources. Scope is (if present) a particular resource type.
PathTxCache
path-tx-cache
Terminology Cache Path. The value of this string 0..1 parameter is a subfolder of the build context’s location that is used as the terminology cache. If this is not present, the terminology cache is on the local system, not under version control.
RuleBrokenLinks
rule-broken-links
Broken Links Rule. The value of this string 0..1 parameter is either “warning” or “error” (default = “error”). If the value is “warning” then IG build tools allow the IG to be considered successfully build even when there is no internal broken links.
_Custom(String)
Custom code value.
Trait Implementations§
Source§impl AsRef<str> for GuideParameterCode
impl AsRef<str> for GuideParameterCode
Source§impl Clone for GuideParameterCode
impl Clone for GuideParameterCode
Source§fn clone(&self) -> GuideParameterCode
fn clone(&self) -> GuideParameterCode
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GuideParameterCode
impl Debug for GuideParameterCode
Source§impl<'de> Deserialize<'de> for GuideParameterCode
impl<'de> Deserialize<'de> for GuideParameterCode
Source§fn deserialize<D>(
deserializer: D,
) -> Result<GuideParameterCode, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<GuideParameterCode, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl Display for GuideParameterCode
impl Display for GuideParameterCode
Source§impl From<GuideParameterCode> for CodeableConcept
impl From<GuideParameterCode> for CodeableConcept
Source§fn from(code: GuideParameterCode) -> CodeableConcept
fn from(code: GuideParameterCode) -> CodeableConcept
Source§impl From<GuideParameterCode> for Coding
impl From<GuideParameterCode> for Coding
Source§fn from(code: GuideParameterCode) -> Coding
fn from(code: GuideParameterCode) -> Coding
Source§impl FromStr for GuideParameterCode
impl FromStr for GuideParameterCode
Source§impl Hash for GuideParameterCode
impl Hash for GuideParameterCode
Source§impl PartialEq for GuideParameterCode
impl PartialEq for GuideParameterCode
Source§impl Serialize for GuideParameterCode
impl Serialize for GuideParameterCode
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,
impl Eq for GuideParameterCode
impl StructuralPartialEq for GuideParameterCode
Auto Trait Implementations§
impl Freeze for GuideParameterCode
impl RefUnwindSafe for GuideParameterCode
impl Send for GuideParameterCode
impl Sync for GuideParameterCode
impl Unpin for GuideParameterCode
impl UnwindSafe for GuideParameterCode
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
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
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.