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/pickupLocation>
pub const PICKUP_LOCATION_PROPERTY_IRI_HTTP: &str = "http://schema.org/pickupLocation";
/// <https://schema.org/pickupLocation>
pub const PICKUP_LOCATION_PROPERTY_IRI_HTTPS: &str = "https://schema.org/pickupLocation";
/// <https://schema.org/pickupLocation>
pub const PICKUP_LOCATION_PROPERTY_LABEL: &str = "pickupLocation";
pub struct PickupLocationPropertyIri;
impl PartialEq<&str> for PickupLocationPropertyIri {
	fn eq(&self, other: &&str) -> bool {
		*other == PICKUP_LOCATION_PROPERTY_IRI_HTTP || *other == PICKUP_LOCATION_PROPERTY_IRI_HTTPS
	}
}
impl PartialEq<PickupLocationPropertyIri> for &str {
	fn eq(&self, other: &PickupLocationPropertyIri) -> bool {
		*self == PICKUP_LOCATION_PROPERTY_IRI_HTTP || *self == PICKUP_LOCATION_PROPERTY_IRI_HTTPS
	}
}
pub struct PickupLocationPropertyIriOrLabel;
impl PartialEq<&str> for PickupLocationPropertyIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == PickupLocationPropertyIri || *other == PICKUP_LOCATION_PROPERTY_LABEL
	}
}
impl PartialEq<PickupLocationPropertyIriOrLabel> for &str {
	fn eq(&self, other: &PickupLocationPropertyIriOrLabel) -> bool {
		*self == PickupLocationPropertyIri || *self == PICKUP_LOCATION_PROPERTY_LABEL
	}
}