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/adverseOutcome>
pub const ADVERSE_OUTCOME_PROPERTY_IRI_HTTP: &str = "http://schema.org/adverseOutcome";
/// <https://schema.org/adverseOutcome>
pub const ADVERSE_OUTCOME_PROPERTY_IRI_HTTPS: &str = "https://schema.org/adverseOutcome";
/// <https://schema.org/adverseOutcome>
pub const ADVERSE_OUTCOME_PROPERTY_LABEL: &str = "adverseOutcome";
pub struct AdverseOutcomePropertyIri;
impl PartialEq<&str> for AdverseOutcomePropertyIri {
	fn eq(&self, other: &&str) -> bool {
		*other == ADVERSE_OUTCOME_PROPERTY_IRI_HTTP || *other == ADVERSE_OUTCOME_PROPERTY_IRI_HTTPS
	}
}
impl PartialEq<AdverseOutcomePropertyIri> for &str {
	fn eq(&self, other: &AdverseOutcomePropertyIri) -> bool {
		*self == ADVERSE_OUTCOME_PROPERTY_IRI_HTTP || *self == ADVERSE_OUTCOME_PROPERTY_IRI_HTTPS
	}
}
pub struct AdverseOutcomePropertyIriOrLabel;
impl PartialEq<&str> for AdverseOutcomePropertyIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == AdverseOutcomePropertyIri || *other == ADVERSE_OUTCOME_PROPERTY_LABEL
	}
}
impl PartialEq<AdverseOutcomePropertyIriOrLabel> for &str {
	fn eq(&self, other: &AdverseOutcomePropertyIriOrLabel) -> bool {
		*self == AdverseOutcomePropertyIri || *self == ADVERSE_OUTCOME_PROPERTY_LABEL
	}
}