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
29
30
/// <https://schema.org/biomechnicalClass>
pub const BIOMECHNICAL_CLASS_PROPERTY_IRI_HTTP: &str = "http://schema.org/biomechnicalClass";
/// <https://schema.org/biomechnicalClass>
pub const BIOMECHNICAL_CLASS_PROPERTY_IRI_HTTPS: &str = "https://schema.org/biomechnicalClass";
/// <https://schema.org/biomechnicalClass>
pub const BIOMECHNICAL_CLASS_PROPERTY_LABEL: &str = "biomechnicalClass";
pub struct BiomechnicalClassPropertyIri;
impl PartialEq<&str> for BiomechnicalClassPropertyIri {
	fn eq(&self, other: &&str) -> bool {
		*other == BIOMECHNICAL_CLASS_PROPERTY_IRI_HTTP
			|| *other == BIOMECHNICAL_CLASS_PROPERTY_IRI_HTTPS
	}
}
impl PartialEq<BiomechnicalClassPropertyIri> for &str {
	fn eq(&self, other: &BiomechnicalClassPropertyIri) -> bool {
		*self == BIOMECHNICAL_CLASS_PROPERTY_IRI_HTTP
			|| *self == BIOMECHNICAL_CLASS_PROPERTY_IRI_HTTPS
	}
}
pub struct BiomechnicalClassPropertyIriOrLabel;
impl PartialEq<&str> for BiomechnicalClassPropertyIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == BiomechnicalClassPropertyIri || *other == BIOMECHNICAL_CLASS_PROPERTY_LABEL
	}
}
impl PartialEq<BiomechnicalClassPropertyIriOrLabel> for &str {
	fn eq(&self, other: &BiomechnicalClassPropertyIriOrLabel) -> bool {
		*self == BiomechnicalClassPropertyIri || *self == BIOMECHNICAL_CLASS_PROPERTY_LABEL
	}
}