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/ElementarySchool>
pub const ELEMENTARY_SCHOOL_IRI_HTTP: &str = "http://schema.org/ElementarySchool";
/// <https://schema.org/ElementarySchool>
pub const ELEMENTARY_SCHOOL_IRI_HTTPS: &str = "https://schema.org/ElementarySchool";
/// <https://schema.org/ElementarySchool>
pub const ELEMENTARY_SCHOOL_LABEL: &str = "ElementarySchool";
pub struct ElementarySchoolIri;
impl PartialEq<&str> for ElementarySchoolIri {
	fn eq(&self, other: &&str) -> bool {
		*other == ELEMENTARY_SCHOOL_IRI_HTTP || *other == ELEMENTARY_SCHOOL_IRI_HTTPS
	}
}
impl PartialEq<ElementarySchoolIri> for &str {
	fn eq(&self, other: &ElementarySchoolIri) -> bool {
		*self == ELEMENTARY_SCHOOL_IRI_HTTP || *self == ELEMENTARY_SCHOOL_IRI_HTTPS
	}
}
pub struct ElementarySchoolIriOrLabel;
impl PartialEq<&str> for ElementarySchoolIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == ElementarySchoolIri || *other == ELEMENTARY_SCHOOL_LABEL
	}
}
impl PartialEq<ElementarySchoolIriOrLabel> for &str {
	fn eq(&self, other: &ElementarySchoolIriOrLabel) -> bool {
		*self == ElementarySchoolIri || *self == ELEMENTARY_SCHOOL_LABEL
	}
}