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/AutoRental>
pub const AUTO_RENTAL_IRI_HTTP: &str = "http://schema.org/AutoRental";
/// <https://schema.org/AutoRental>
pub const AUTO_RENTAL_IRI_HTTPS: &str = "https://schema.org/AutoRental";
/// <https://schema.org/AutoRental>
pub const AUTO_RENTAL_LABEL: &str = "AutoRental";
pub struct AutoRentalIri;
impl PartialEq<&str> for AutoRentalIri {
	fn eq(&self, other: &&str) -> bool {
		*other == AUTO_RENTAL_IRI_HTTP || *other == AUTO_RENTAL_IRI_HTTPS
	}
}
impl PartialEq<AutoRentalIri> for &str {
	fn eq(&self, other: &AutoRentalIri) -> bool {
		*self == AUTO_RENTAL_IRI_HTTP || *self == AUTO_RENTAL_IRI_HTTPS
	}
}
pub struct AutoRentalIriOrLabel;
impl PartialEq<&str> for AutoRentalIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == AutoRentalIri || *other == AUTO_RENTAL_LABEL
	}
}
impl PartialEq<AutoRentalIriOrLabel> for &str {
	fn eq(&self, other: &AutoRentalIriOrLabel) -> bool {
		*self == AutoRentalIri || *self == AUTO_RENTAL_LABEL
	}
}