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/BodyMeasurementChest>
pub const BODY_MEASUREMENT_CHEST_IRI_HTTP: &str = "http://schema.org/BodyMeasurementChest";
/// <https://schema.org/BodyMeasurementChest>
pub const BODY_MEASUREMENT_CHEST_IRI_HTTPS: &str = "https://schema.org/BodyMeasurementChest";
/// <https://schema.org/BodyMeasurementChest>
pub const BODY_MEASUREMENT_CHEST_LABEL: &str = "BodyMeasurementChest";
pub struct BodyMeasurementChestIri;
impl PartialEq<&str> for BodyMeasurementChestIri {
	fn eq(&self, other: &&str) -> bool {
		*other == BODY_MEASUREMENT_CHEST_IRI_HTTP || *other == BODY_MEASUREMENT_CHEST_IRI_HTTPS
	}
}
impl PartialEq<BodyMeasurementChestIri> for &str {
	fn eq(&self, other: &BodyMeasurementChestIri) -> bool {
		*self == BODY_MEASUREMENT_CHEST_IRI_HTTP || *self == BODY_MEASUREMENT_CHEST_IRI_HTTPS
	}
}
pub struct BodyMeasurementChestIriOrLabel;
impl PartialEq<&str> for BodyMeasurementChestIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == BodyMeasurementChestIri || *other == BODY_MEASUREMENT_CHEST_LABEL
	}
}
impl PartialEq<BodyMeasurementChestIriOrLabel> for &str {
	fn eq(&self, other: &BodyMeasurementChestIriOrLabel) -> bool {
		*self == BodyMeasurementChestIri || *self == BODY_MEASUREMENT_CHEST_LABEL
	}
}