pub trait PhysicalActivityTrait {
    // Required methods
    fn get_associated_anatomy(&self) -> &[AssociatedAnatomyProperty];
    fn take_associated_anatomy(&mut self) -> Vec<AssociatedAnatomyProperty>;
    fn get_category(&self) -> &[CategoryProperty];
    fn take_category(&mut self) -> Vec<CategoryProperty>;
    fn get_epidemiology(&self) -> &[EpidemiologyProperty];
    fn take_epidemiology(&mut self) -> Vec<EpidemiologyProperty>;
    fn get_pathophysiology(&self) -> &[PathophysiologyProperty];
    fn take_pathophysiology(&mut self) -> Vec<PathophysiologyProperty>;
}
Expand description

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

Required Methods§

Implementors§