pub trait ClaimTrait {
    // Required methods
    fn get_appearance(&self) -> &[AppearanceProperty];
    fn take_appearance(&mut self) -> Vec<AppearanceProperty>;
    fn get_claim_interpreter(&self) -> &[ClaimInterpreterProperty];
    fn take_claim_interpreter(&mut self) -> Vec<ClaimInterpreterProperty>;
    fn get_first_appearance(&self) -> &[FirstAppearanceProperty];
    fn take_first_appearance(&mut self) -> Vec<FirstAppearanceProperty>;
}
Expand description

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

Required Methods§

Implementors§