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