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