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/MonetaryGrant>
pub const MONETARY_GRANT_IRI_HTTP: &str = "http://schema.org/MonetaryGrant";
/// <https://schema.org/MonetaryGrant>
pub const MONETARY_GRANT_IRI_HTTPS: &str = "https://schema.org/MonetaryGrant";
/// <https://schema.org/MonetaryGrant>
pub const MONETARY_GRANT_LABEL: &str = "MonetaryGrant";
pub struct MonetaryGrantIri;
impl PartialEq<&str> for MonetaryGrantIri {
	fn eq(&self, other: &&str) -> bool {
		*other == MONETARY_GRANT_IRI_HTTP || *other == MONETARY_GRANT_IRI_HTTPS
	}
}
impl PartialEq<MonetaryGrantIri> for &str {
	fn eq(&self, other: &MonetaryGrantIri) -> bool {
		*self == MONETARY_GRANT_IRI_HTTP || *self == MONETARY_GRANT_IRI_HTTPS
	}
}
pub struct MonetaryGrantIriOrLabel;
impl PartialEq<&str> for MonetaryGrantIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == MonetaryGrantIri || *other == MONETARY_GRANT_LABEL
	}
}
impl PartialEq<MonetaryGrantIriOrLabel> for &str {
	fn eq(&self, other: &MonetaryGrantIriOrLabel) -> bool {
		*self == MonetaryGrantIri || *self == MONETARY_GRANT_LABEL
	}
}