pub trait AnswerTrait {
    // Required methods
    fn get_answer_explanation(&self) -> &[AnswerExplanationProperty];
    fn take_answer_explanation(&mut self) -> Vec<AnswerExplanationProperty>;
    fn get_parent_item(&self) -> &[ParentItemProperty];
    fn take_parent_item(&mut self) -> Vec<ParentItemProperty>;
}
Expand description

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

Required Methods§

Implementors§