pub trait StupidTypeTrait {
    // Required methods
    fn get_stupid_property(&self) -> &[StupidPropertyProperty];
    fn take_stupid_property(&mut self) -> Vec<StupidPropertyProperty>;
}
👎Deprecated: This schema is archived, see https://schema.org/docs/attic.home.html.
Expand description

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

Required Methods§

source

fn get_stupid_property(&self) -> &[StupidPropertyProperty]

👎Deprecated: This schema is archived, see https://schema.org/docs/attic.home.html.

Get https://schema.org/stupidProperty from Self as borrowed slice.

source

fn take_stupid_property(&mut self) -> Vec<StupidPropertyProperty>

👎Deprecated: This schema is archived, see https://schema.org/docs/attic.home.html.

Take https://schema.org/stupidProperty from Self as owned vector.

Implementors§