1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/// <https://schema.org/additionalName>
pub const ADDITIONAL_NAME_PROPERTY_IRI_HTTP: &str = "http://schema.org/additionalName";
/// <https://schema.org/additionalName>
pub const ADDITIONAL_NAME_PROPERTY_IRI_HTTPS: &str = "https://schema.org/additionalName";
/// <https://schema.org/additionalName>
pub const ADDITIONAL_NAME_PROPERTY_LABEL: &str = "additionalName";
pub struct AdditionalNamePropertyIri;
impl PartialEq<&str> for AdditionalNamePropertyIri {
	fn eq(&self, other: &&str) -> bool {
		*other == ADDITIONAL_NAME_PROPERTY_IRI_HTTP || *other == ADDITIONAL_NAME_PROPERTY_IRI_HTTPS
	}
}
impl PartialEq<AdditionalNamePropertyIri> for &str {
	fn eq(&self, other: &AdditionalNamePropertyIri) -> bool {
		*self == ADDITIONAL_NAME_PROPERTY_IRI_HTTP || *self == ADDITIONAL_NAME_PROPERTY_IRI_HTTPS
	}
}
pub struct AdditionalNamePropertyIriOrLabel;
impl PartialEq<&str> for AdditionalNamePropertyIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == AdditionalNamePropertyIri || *other == ADDITIONAL_NAME_PROPERTY_LABEL
	}
}
impl PartialEq<AdditionalNamePropertyIriOrLabel> for &str {
	fn eq(&self, other: &AdditionalNamePropertyIriOrLabel) -> bool {
		*self == AdditionalNamePropertyIri || *self == ADDITIONAL_NAME_PROPERTY_LABEL
	}
}