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
29
30
31
/// <https://schema.org/members>
#[deprecated = "This schema is superseded by <https://schema.org/member>."]
pub const MEMBERS_PROPERTY_IRI_HTTP: &str = "http://schema.org/members";
/// <https://schema.org/members>
#[deprecated = "This schema is superseded by <https://schema.org/member>."]
pub const MEMBERS_PROPERTY_IRI_HTTPS: &str = "https://schema.org/members";
/// <https://schema.org/members>
#[deprecated = "This schema is superseded by <https://schema.org/member>."]
pub const MEMBERS_PROPERTY_LABEL: &str = "members";
pub struct MembersPropertyIri;
impl PartialEq<&str> for MembersPropertyIri {
	fn eq(&self, other: &&str) -> bool {
		*other == MEMBERS_PROPERTY_IRI_HTTP || *other == MEMBERS_PROPERTY_IRI_HTTPS
	}
}
impl PartialEq<MembersPropertyIri> for &str {
	fn eq(&self, other: &MembersPropertyIri) -> bool {
		*self == MEMBERS_PROPERTY_IRI_HTTP || *self == MEMBERS_PROPERTY_IRI_HTTPS
	}
}
pub struct MembersPropertyIriOrLabel;
impl PartialEq<&str> for MembersPropertyIriOrLabel {
	fn eq(&self, other: &&str) -> bool {
		*other == MembersPropertyIri || *other == MEMBERS_PROPERTY_LABEL
	}
}
impl PartialEq<MembersPropertyIriOrLabel> for &str {
	fn eq(&self, other: &MembersPropertyIriOrLabel) -> bool {
		*self == MembersPropertyIri || *self == MEMBERS_PROPERTY_LABEL
	}
}