pub trait ArteryTrait {
    // Required methods
    fn get_arterial_branch(&self) -> &[ArterialBranchProperty];
    fn take_arterial_branch(&mut self) -> Vec<ArterialBranchProperty>;
    fn get_supply_to(&self) -> &[SupplyToProperty];
    fn take_supply_to(&mut self) -> Vec<SupplyToProperty>;
}
Expand description

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

Required Methods§

Implementors§