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
31
32
/// <https://schema.org/OpeningHoursSpecification>
pub const OPENING_HOURS_SPECIFICATION_IRI_HTTP: &str =
	"http://schema.org/OpeningHoursSpecification";
/// <https://schema.org/OpeningHoursSpecification>
pub const OPENING_HOURS_SPECIFICATION_IRI_HTTPS: &str =
	"https://schema.org/OpeningHoursSpecification";
/// <https://schema.org/OpeningHoursSpecification>
pub const OPENING_HOURS_SPECIFICATION_LABEL: &str = "OpeningHoursSpecification";
pub struct OpeningHoursSpecificationIri;
impl PartialEq<&str> for OpeningHoursSpecificationIri {
	fn eq(&self, other: &&str) -> bool {
		*other == OPENING_HOURS_SPECIFICATION_IRI_HTTP
			|| *other == OPENING_HOURS_SPECIFICATION_IRI_HTTPS
	}
}
impl PartialEq<OpeningHoursSpecificationIri> for &str {
	fn eq(&self, other: &OpeningHoursSpecificationIri) -> bool {
		*self == OPENING_HOURS_SPECIFICATION_IRI_HTTP
			|| *self == OPENING_HOURS_SPECIFICATION_IRI_HTTPS
	}
}
pub struct OpeningHoursSpecificationIriOrLabel;
impl PartialEq<&str> for OpeningHoursSpecificationIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == OpeningHoursSpecificationIri || *other == OPENING_HOURS_SPECIFICATION_LABEL
	}
}
impl PartialEq<OpeningHoursSpecificationIriOrLabel> for &str {
	fn eq(&self, other: &OpeningHoursSpecificationIriOrLabel) -> bool {
		*self == OpeningHoursSpecificationIri || *self == OPENING_HOURS_SPECIFICATION_LABEL
	}
}