pub trait LinkRoleTrait {
    // Required methods
    fn get_in_language(&self) -> &[InLanguageProperty];
    fn take_in_language(&mut self) -> Vec<InLanguageProperty>;
    fn get_link_relationship(&self) -> &[LinkRelationshipProperty];
    fn take_link_relationship(&mut self) -> Vec<LinkRelationshipProperty>;
}
Expand description

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

Required Methods§

Implementors§