pub trait LymphaticVesselTrait {
    // Required methods
    fn get_originates_from(&self) -> &[OriginatesFromProperty];
    fn take_originates_from(&mut self) -> Vec<OriginatesFromProperty>;
    fn get_region_drained(&self) -> &[RegionDrainedProperty];
    fn take_region_drained(&mut self) -> Vec<RegionDrainedProperty>;
    fn get_runs_to(&self) -> &[RunsToProperty];
    fn take_runs_to(&mut self) -> Vec<RunsToProperty>;
}
Expand description

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

Required Methods§

Implementors§