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/DefenceEstablishment>
pub const DEFENCE_ESTABLISHMENT_IRI_HTTP: &str = "http://schema.org/DefenceEstablishment";
/// <https://schema.org/DefenceEstablishment>
pub const DEFENCE_ESTABLISHMENT_IRI_HTTPS: &str = "https://schema.org/DefenceEstablishment";
/// <https://schema.org/DefenceEstablishment>
pub const DEFENCE_ESTABLISHMENT_LABEL: &str = "DefenceEstablishment";
pub struct DefenceEstablishmentIri;
impl PartialEq<&str> for DefenceEstablishmentIri {
	fn eq(&self, other: &&str) -> bool {
		*other == DEFENCE_ESTABLISHMENT_IRI_HTTP || *other == DEFENCE_ESTABLISHMENT_IRI_HTTPS
	}
}
impl PartialEq<DefenceEstablishmentIri> for &str {
	fn eq(&self, other: &DefenceEstablishmentIri) -> bool {
		*self == DEFENCE_ESTABLISHMENT_IRI_HTTP || *self == DEFENCE_ESTABLISHMENT_IRI_HTTPS
	}
}
pub struct DefenceEstablishmentIriOrLabel;
impl PartialEq<&str> for DefenceEstablishmentIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == DefenceEstablishmentIri || *other == DEFENCE_ESTABLISHMENT_LABEL
	}
}
impl PartialEq<DefenceEstablishmentIriOrLabel> for &str {
	fn eq(&self, other: &DefenceEstablishmentIriOrLabel) -> bool {
		*self == DefenceEstablishmentIri || *self == DEFENCE_ESTABLISHMENT_LABEL
	}
}