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/RadioSeries>
pub const RADIO_SERIES_IRI_HTTP: &str = "http://schema.org/RadioSeries";
/// <https://schema.org/RadioSeries>
pub const RADIO_SERIES_IRI_HTTPS: &str = "https://schema.org/RadioSeries";
/// <https://schema.org/RadioSeries>
pub const RADIO_SERIES_LABEL: &str = "RadioSeries";
pub struct RadioSeriesIri;
impl PartialEq<&str> for RadioSeriesIri {
	fn eq(&self, other: &&str) -> bool {
		*other == RADIO_SERIES_IRI_HTTP || *other == RADIO_SERIES_IRI_HTTPS
	}
}
impl PartialEq<RadioSeriesIri> for &str {
	fn eq(&self, other: &RadioSeriesIri) -> bool {
		*self == RADIO_SERIES_IRI_HTTP || *self == RADIO_SERIES_IRI_HTTPS
	}
}
pub struct RadioSeriesIriOrLabel;
impl PartialEq<&str> for RadioSeriesIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == RadioSeriesIri || *other == RADIO_SERIES_LABEL
	}
}
impl PartialEq<RadioSeriesIriOrLabel> for &str {
	fn eq(&self, other: &RadioSeriesIriOrLabel) -> bool {
		*self == RadioSeriesIri || *self == RADIO_SERIES_LABEL
	}
}