pub trait PhysicianTrait {
    // Required methods
    fn get_available_service(&self) -> &[AvailableServiceProperty];
    fn take_available_service(&mut self) -> Vec<AvailableServiceProperty>;
    fn get_hospital_affiliation(&self) -> &[HospitalAffiliationProperty];
    fn take_hospital_affiliation(&mut self) -> Vec<HospitalAffiliationProperty>;
    fn get_medical_specialty(&self) -> &[MedicalSpecialtyProperty];
    fn take_medical_specialty(&mut self) -> Vec<MedicalSpecialtyProperty>;
}
Expand description

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

Required Methods§

Implementors§