pub trait GovernmentServiceTrait {
    // Required methods
    fn get_jurisdiction(&self) -> &[JurisdictionProperty];
    fn take_jurisdiction(&mut self) -> Vec<JurisdictionProperty>;
    fn get_service_operator(&self) -> &[ServiceOperatorProperty];
    fn take_service_operator(&mut self) -> Vec<ServiceOperatorProperty>;
}
Expand description

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

Required Methods§

Implementors§