pub trait TherapeuticProcedureTrait {
    // Required methods
    fn get_adverse_outcome(&self) -> &[AdverseOutcomeProperty];
    fn take_adverse_outcome(&mut self) -> Vec<AdverseOutcomeProperty>;
    fn get_dose_schedule(&self) -> &[DoseScheduleProperty];
    fn take_dose_schedule(&mut self) -> Vec<DoseScheduleProperty>;
    fn get_drug(&self) -> &[DrugProperty];
    fn take_drug(&mut self) -> Vec<DrugProperty>;
}
Expand description

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

Required Methods§

Implementors§