pub trait MedicalTherapyTrait {
    // Required methods
    fn get_contraindication(&self) -> &[ContraindicationProperty];
    fn take_contraindication(&mut self) -> Vec<ContraindicationProperty>;
    fn get_duplicate_therapy(&self) -> &[DuplicateTherapyProperty];
    fn take_duplicate_therapy(&mut self) -> Vec<DuplicateTherapyProperty>;
    fn get_serious_adverse_outcome(&self) -> &[SeriousAdverseOutcomeProperty];
    fn take_serious_adverse_outcome(
        &mut self
    ) -> Vec<SeriousAdverseOutcomeProperty>;
}
Expand description

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

Required Methods§

Implementors§