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