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/cargoVolume>
pub const CARGO_VOLUME_PROPERTY_IRI_HTTP: &str = "http://schema.org/cargoVolume";
/// <https://schema.org/cargoVolume>
pub const CARGO_VOLUME_PROPERTY_IRI_HTTPS: &str = "https://schema.org/cargoVolume";
/// <https://schema.org/cargoVolume>
pub const CARGO_VOLUME_PROPERTY_LABEL: &str = "cargoVolume";
pub struct CargoVolumePropertyIri;
impl PartialEq<&str> for CargoVolumePropertyIri {
	fn eq(&self, other: &&str) -> bool {
		*other == CARGO_VOLUME_PROPERTY_IRI_HTTP || *other == CARGO_VOLUME_PROPERTY_IRI_HTTPS
	}
}
impl PartialEq<CargoVolumePropertyIri> for &str {
	fn eq(&self, other: &CargoVolumePropertyIri) -> bool {
		*self == CARGO_VOLUME_PROPERTY_IRI_HTTP || *self == CARGO_VOLUME_PROPERTY_IRI_HTTPS
	}
}
pub struct CargoVolumePropertyIriOrLabel;
impl PartialEq<&str> for CargoVolumePropertyIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == CargoVolumePropertyIri || *other == CARGO_VOLUME_PROPERTY_LABEL
	}
}
impl PartialEq<CargoVolumePropertyIriOrLabel> for &str {
	fn eq(&self, other: &CargoVolumePropertyIriOrLabel) -> bool {
		*self == CargoVolumePropertyIri || *self == CARGO_VOLUME_PROPERTY_LABEL
	}
}