pub trait HealthPlanFormularyTrait {
    // Required methods
    fn get_health_plan_cost_sharing(&self) -> &[HealthPlanCostSharingProperty];
    fn take_health_plan_cost_sharing(
        &mut self
    ) -> Vec<HealthPlanCostSharingProperty>;
    fn get_health_plan_drug_tier(&self) -> &[HealthPlanDrugTierProperty];
    fn take_health_plan_drug_tier(&mut self) -> Vec<HealthPlanDrugTierProperty>;
    fn get_offers_prescription_by_mail(
        &self
    ) -> &[OffersPrescriptionByMailProperty];
    fn take_offers_prescription_by_mail(
        &mut self
    ) -> Vec<OffersPrescriptionByMailProperty>;
}
Expand description

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

Required Methods§

Implementors§