pub trait VeinTrait {
    // Required methods
    fn get_drains_to(&self) -> &[DrainsToProperty];
    fn take_drains_to(&mut self) -> Vec<DrainsToProperty>;
    fn get_region_drained(&self) -> &[RegionDrainedProperty];
    fn take_region_drained(&mut self) -> Vec<RegionDrainedProperty>;
    fn get_tributary(&self) -> &[TributaryProperty];
    fn take_tributary(&mut self) -> Vec<TributaryProperty>;
}
Expand description

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

Required Methods§

Implementors§