pub trait MedicalCodeTrait {
    // Required methods
    fn get_code_value(&self) -> &[CodeValueProperty];
    fn take_code_value(&mut self) -> Vec<CodeValueProperty>;
    fn get_coding_system(&self) -> &[CodingSystemProperty];
    fn take_coding_system(&mut self) -> Vec<CodingSystemProperty>;
}
Expand description

This trait is for properties from https://schema.org/MedicalCode.

Required Methods§

Implementors§