pub trait EducationEventTrait {
    // Required methods
    fn get_assesses(&self) -> &[AssessesProperty];
    fn take_assesses(&mut self) -> Vec<AssessesProperty>;
    fn get_educational_level(&self) -> &[EducationalLevelProperty];
    fn take_educational_level(&mut self) -> Vec<EducationalLevelProperty>;
    fn get_teaches(&self) -> &[TeachesProperty];
    fn take_teaches(&mut self) -> Vec<TeachesProperty>;
}
Expand description

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

Required Methods§

Implementors§