pub enum QuestionnaireItemControl {
Show 26 variants
Atable(Option<Element>),
Autocomplete(Option<Element>),
CheckBox(Option<Element>),
DropDown(Option<Element>),
Flyover(Option<Element>),
Footer(Option<Element>),
Group(Option<Element>),
Gtable(Option<Element>),
Header(Option<Element>),
Help(Option<Element>),
Htable(Option<Element>),
Inline(Option<Element>),
List(Option<Element>),
Lookup(Option<Element>),
Lower(Option<Element>),
Prompt(Option<Element>),
Question(Option<Element>),
RadioButton(Option<Element>),
Slider(Option<Element>),
Spinner(Option<Element>),
Table(Option<Element>),
Text(Option<Element>),
TextBox(Option<Element>),
Unit(Option<Element>),
Upper(Option<Element>),
Null(Option<Element>),
}Variants§
Atable(Option<Element>)
Answer Table
Autocomplete(Option<Element>)
Auto-complete
CheckBox(Option<Element>)
Check-box
DropDown(Option<Element>)
Drop down
Flyover(Option<Element>)
Fly-over
Footer
Group(Option<Element>)
Gtable(Option<Element>)
Group Table
Header(Option<Element>)
Header
Help(Option<Element>)
Help-Button
Htable(Option<Element>)
Horizontal Answer Table
Inline(Option<Element>)
In-line
List(Option<Element>)
List
Lookup(Option<Element>)
Lookup
Lower(Option<Element>)
Lower-bound
Prompt(Option<Element>)
Prompt
Question(Option<Element>)
RadioButton(Option<Element>)
Radio Button
Slider(Option<Element>)
Slider
Spinner(Option<Element>)
Spinner
Table(Option<Element>)
Vertical Answer Table
Text(Option<Element>)
TextBox(Option<Element>)
Text Box
Unit(Option<Element>)
Unit
Upper(Option<Element>)
Upper-bound
Null(Option<Element>)
If value is missing and just the element is present.
Trait Implementations§
Source§impl Clone for QuestionnaireItemControl
impl Clone for QuestionnaireItemControl
Source§fn clone(&self) -> QuestionnaireItemControl
fn clone(&self) -> QuestionnaireItemControl
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 QuestionnaireItemControl
impl Debug for QuestionnaireItemControl
Source§impl Default for QuestionnaireItemControl
impl Default for QuestionnaireItemControl
Source§impl FHIRJSONDeserializer for QuestionnaireItemControl
impl FHIRJSONDeserializer for QuestionnaireItemControl
fn from_json_str(s: &str) -> Result<Self, DeserializeError>
fn from_serde_value( json: &Value, context: Context<'_>, ) -> Result<Self, DeserializeError>
Source§impl FHIRJSONSerializer for QuestionnaireItemControl
impl FHIRJSONSerializer for QuestionnaireItemControl
fn serialize_value( &self, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn serialize_extension( &self, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn serialize_field( &self, field: &str, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn is_fp_primitive(&self) -> bool
Source§impl MetaValue for QuestionnaireItemControl
impl MetaValue for QuestionnaireItemControl
fn fields(&self) -> Vec<&'static str>
fn get_field<'a>(&'a self, field: &str) -> Option<&'a dyn MetaValue>
fn get_field_mut<'a>(&'a mut self, field: &str) -> Option<&'a mut dyn MetaValue>
fn get_index<'a>(&'a self, _index: usize) -> Option<&'a dyn MetaValue>
fn get_index_mut<'a>( &'a mut self, _index: usize, ) -> Option<&'a mut dyn MetaValue>
fn flatten(&self) -> Vec<&dyn MetaValue>
fn as_any(&self) -> &dyn Any
fn typename(&self) -> &'static str
Auto Trait Implementations§
impl Freeze for QuestionnaireItemControl
impl RefUnwindSafe for QuestionnaireItemControl
impl Send for QuestionnaireItemControl
impl Sync for QuestionnaireItemControl
impl Unpin for QuestionnaireItemControl
impl UnwindSafe for QuestionnaireItemControl
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more