pub trait MedicalRiskScoreTrait {
    // Required methods
    fn get_algorithm(&self) -> &[AlgorithmProperty];
    fn take_algorithm(&mut self) -> Vec<AlgorithmProperty>;
}
Expand description

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

Required Methods§

source

fn get_algorithm(&self) -> &[AlgorithmProperty]

Get https://schema.org/algorithm from Self as borrowed slice.

source

fn take_algorithm(&mut self) -> Vec<AlgorithmProperty>

Take https://schema.org/algorithm from Self as owned vector.

Implementors§