pub trait LocationFeatureSpecificationTrait {
    // Required methods
    fn get_hours_available(&self) -> &[HoursAvailableProperty];
    fn take_hours_available(&mut self) -> Vec<HoursAvailableProperty>;
    fn get_valid_from(&self) -> &[ValidFromProperty];
    fn take_valid_from(&mut self) -> Vec<ValidFromProperty>;
    fn get_valid_through(&self) -> &[ValidThroughProperty];
    fn take_valid_through(&mut self) -> Vec<ValidThroughProperty>;
}
Expand description

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

Required Methods§

Implementors§