pub trait MedicalRiskFactorTrait {
    // Required methods
    fn get_increases_risk_of(&self) -> &[IncreasesRiskOfProperty];
    fn take_increases_risk_of(&mut self) -> Vec<IncreasesRiskOfProperty>;
}
Expand description

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

Required Methods§

Implementors§