pub trait GetRoofLoadProperty {
type IdType;
type PropertyType;
// Required method
fn get_roof_load_property(
&self,
id: &Self::IdType,
) -> Vec<&Self::PropertyType>;
}Expand description
Required Associated Types§
type IdType
type PropertyType
Required Methods§
Sourcefn get_roof_load_property(&self, id: &Self::IdType) -> Vec<&Self::PropertyType>
fn get_roof_load_property(&self, id: &Self::IdType) -> Vec<&Self::PropertyType>
Implementors§
Source§impl GetRoofLoadProperty for schema_org_traits::json_ld_0_15::JsonLdStore
Available on crate feature json-ld_0_15 only.
impl GetRoofLoadProperty for schema_org_traits::json_ld_0_15::JsonLdStore
Available on crate feature
json-ld_0_15 only.Source§impl GetRoofLoadProperty for schema_org_traits::json_ld_0_16::JsonLdStore
Available on crate feature json-ld_0_16 only.
impl GetRoofLoadProperty for schema_org_traits::json_ld_0_16::JsonLdStore
Available on crate feature
json-ld_0_16 only.