pub trait SuperficialAnatomyTrait {
    // Required methods
    fn get_associated_pathophysiology(
        &self
    ) -> &[AssociatedPathophysiologyProperty];
    fn take_associated_pathophysiology(
        &mut self
    ) -> Vec<AssociatedPathophysiologyProperty>;
    fn get_related_anatomy(&self) -> &[RelatedAnatomyProperty];
    fn take_related_anatomy(&mut self) -> Vec<RelatedAnatomyProperty>;
    fn get_related_condition(&self) -> &[RelatedConditionProperty];
    fn take_related_condition(&mut self) -> Vec<RelatedConditionProperty>;
    fn get_related_therapy(&self) -> &[RelatedTherapyProperty];
    fn take_related_therapy(&mut self) -> Vec<RelatedTherapyProperty>;
    fn get_significance(&self) -> &[SignificanceProperty];
    fn take_significance(&mut self) -> Vec<SignificanceProperty>;
}
Expand description

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

Required Methods§

Implementors§