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/Gynecologic>
pub const GYNECOLOGIC_IRI_HTTP: &str = "http://schema.org/Gynecologic";
/// <https://schema.org/Gynecologic>
pub const GYNECOLOGIC_IRI_HTTPS: &str = "https://schema.org/Gynecologic";
/// <https://schema.org/Gynecologic>
pub const GYNECOLOGIC_LABEL: &str = "Gynecologic";
pub struct GynecologicIri;
impl PartialEq<&str> for GynecologicIri {
	fn eq(&self, other: &&str) -> bool {
		*other == GYNECOLOGIC_IRI_HTTP || *other == GYNECOLOGIC_IRI_HTTPS
	}
}
impl PartialEq<GynecologicIri> for &str {
	fn eq(&self, other: &GynecologicIri) -> bool {
		*self == GYNECOLOGIC_IRI_HTTP || *self == GYNECOLOGIC_IRI_HTTPS
	}
}
pub struct GynecologicIriOrLabel;
impl PartialEq<&str> for GynecologicIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == GynecologicIri || *other == GYNECOLOGIC_LABEL
	}
}
impl PartialEq<GynecologicIriOrLabel> for &str {
	fn eq(&self, other: &GynecologicIriOrLabel) -> bool {
		*self == GynecologicIri || *self == GYNECOLOGIC_LABEL
	}
}