pub trait BroadcastFrequencySpecificationTrait {
    // Required methods
    fn get_broadcast_frequency_value(
        &self
    ) -> &[BroadcastFrequencyValueProperty];
    fn take_broadcast_frequency_value(
        &mut self
    ) -> Vec<BroadcastFrequencyValueProperty>;
    fn get_broadcast_signal_modulation(
        &self
    ) -> &[BroadcastSignalModulationProperty];
    fn take_broadcast_signal_modulation(
        &mut self
    ) -> Vec<BroadcastSignalModulationProperty>;
    fn get_broadcast_sub_channel(&self) -> &[BroadcastSubChannelProperty];
    fn take_broadcast_sub_channel(&mut self) -> Vec<BroadcastSubChannelProperty>;
}
Expand description

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

Required Methods§

Implementors§