pub trait ParentAudienceTrait {
    // Required methods
    fn get_child_max_age(&self) -> &[ChildMaxAgeProperty];
    fn take_child_max_age(&mut self) -> Vec<ChildMaxAgeProperty>;
    fn get_child_min_age(&self) -> &[ChildMinAgeProperty];
    fn take_child_min_age(&mut self) -> Vec<ChildMinAgeProperty>;
}
Expand description

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

Required Methods§

Implementors§