pub trait TechArticleTrait {
    // Required methods
    fn get_dependencies(&self) -> &[DependenciesProperty];
    fn take_dependencies(&mut self) -> Vec<DependenciesProperty>;
    fn get_proficiency_level(&self) -> &[ProficiencyLevelProperty];
    fn take_proficiency_level(&mut self) -> Vec<ProficiencyLevelProperty>;
}
Expand description

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

Required Methods§

Implementors§