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/ScreeningEvent>
pub const SCREENING_EVENT_IRI_HTTP: &str = "http://schema.org/ScreeningEvent";
/// <https://schema.org/ScreeningEvent>
pub const SCREENING_EVENT_IRI_HTTPS: &str = "https://schema.org/ScreeningEvent";
/// <https://schema.org/ScreeningEvent>
pub const SCREENING_EVENT_LABEL: &str = "ScreeningEvent";
pub struct ScreeningEventIri;
impl PartialEq<&str> for ScreeningEventIri {
	fn eq(&self, other: &&str) -> bool {
		*other == SCREENING_EVENT_IRI_HTTP || *other == SCREENING_EVENT_IRI_HTTPS
	}
}
impl PartialEq<ScreeningEventIri> for &str {
	fn eq(&self, other: &ScreeningEventIri) -> bool {
		*self == SCREENING_EVENT_IRI_HTTP || *self == SCREENING_EVENT_IRI_HTTPS
	}
}
pub struct ScreeningEventIriOrLabel;
impl PartialEq<&str> for ScreeningEventIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == ScreeningEventIri || *other == SCREENING_EVENT_LABEL
	}
}
impl PartialEq<ScreeningEventIriOrLabel> for &str {
	fn eq(&self, other: &ScreeningEventIriOrLabel) -> bool {
		*self == ScreeningEventIri || *self == SCREENING_EVENT_LABEL
	}
}