pub trait HealthPlanNetworkTrait {
    // Required methods
    fn get_health_plan_cost_sharing(&self) -> &[HealthPlanCostSharingProperty];
    fn take_health_plan_cost_sharing(
        &mut self
    ) -> Vec<HealthPlanCostSharingProperty>;
    fn get_health_plan_network_id(&self) -> &[HealthPlanNetworkIdProperty];
    fn take_health_plan_network_id(
        &mut self
    ) -> Vec<HealthPlanNetworkIdProperty>;
    fn get_health_plan_network_tier(&self) -> &[HealthPlanNetworkTierProperty];
    fn take_health_plan_network_tier(
        &mut self
    ) -> Vec<HealthPlanNetworkTierProperty>;
}
Expand description

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

Required Methods§

Implementors§