pub trait AnatomicalSystemTrait {
    // Required methods
    fn get_associated_pathophysiology(
        &self
    ) -> &[AssociatedPathophysiologyProperty];
    fn take_associated_pathophysiology(
        &mut self
    ) -> Vec<AssociatedPathophysiologyProperty>;
    fn get_comprised_of(&self) -> &[ComprisedOfProperty];
    fn take_comprised_of(&mut self) -> Vec<ComprisedOfProperty>;
    fn get_related_condition(&self) -> &[RelatedConditionProperty];
    fn take_related_condition(&mut self) -> Vec<RelatedConditionProperty>;
    fn get_related_structure(&self) -> &[RelatedStructureProperty];
    fn take_related_structure(&mut self) -> Vec<RelatedStructureProperty>;
    fn get_related_therapy(&self) -> &[RelatedTherapyProperty];
    fn take_related_therapy(&mut self) -> Vec<RelatedTherapyProperty>;
}
Expand description

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

Required Methods§

Implementors§