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/physicalRequirement>
pub const PHYSICAL_REQUIREMENT_PROPERTY_IRI_HTTP: &str = "http://schema.org/physicalRequirement";
/// <https://schema.org/physicalRequirement>
pub const PHYSICAL_REQUIREMENT_PROPERTY_IRI_HTTPS: &str = "https://schema.org/physicalRequirement";
/// <https://schema.org/physicalRequirement>
pub const PHYSICAL_REQUIREMENT_PROPERTY_LABEL: &str = "physicalRequirement";
pub struct PhysicalRequirementPropertyIri;
impl PartialEq<&str> for PhysicalRequirementPropertyIri {
	fn eq(&self, other: &&str) -> bool {
		*other == PHYSICAL_REQUIREMENT_PROPERTY_IRI_HTTP
			|| *other == PHYSICAL_REQUIREMENT_PROPERTY_IRI_HTTPS
	}
}
impl PartialEq<PhysicalRequirementPropertyIri> for &str {
	fn eq(&self, other: &PhysicalRequirementPropertyIri) -> bool {
		*self == PHYSICAL_REQUIREMENT_PROPERTY_IRI_HTTP
			|| *self == PHYSICAL_REQUIREMENT_PROPERTY_IRI_HTTPS
	}
}
pub struct PhysicalRequirementPropertyIriOrLabel;
impl PartialEq<&str> for PhysicalRequirementPropertyIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == PhysicalRequirementPropertyIri || *other == PHYSICAL_REQUIREMENT_PROPERTY_LABEL
	}
}
impl PartialEq<PhysicalRequirementPropertyIriOrLabel> for &str {
	fn eq(&self, other: &PhysicalRequirementPropertyIriOrLabel) -> bool {
		*self == PhysicalRequirementPropertyIri || *self == PHYSICAL_REQUIREMENT_PROPERTY_LABEL
	}
}