pub enum AssociationLabel {
OwnedBy,
OwnerOf,
DependsOn,
DependencyOf,
ParentOf,
ChildOf,
HasPart,
PartOf,
References,
ReferencedBy,
Tagged,
TaggedBy,
}Variants§
OwnedBy
OwnerOf
DependsOn
DependencyOf
ParentOf
ChildOf
HasPart
PartOf
References
ReferencedBy
Tagged
An entity is tagged with a tag (entity -> tag policy).
TaggedBy
A tag is applied to an entity (tag policy -> entity); inverse of Tagged.
Implementations§
Trait Implementations§
Source§impl AsRef<str> for AssociationLabel
impl AsRef<str> for AssociationLabel
Source§impl Clone for AssociationLabel
impl Clone for AssociationLabel
Source§fn clone(&self) -> AssociationLabel
fn clone(&self) -> AssociationLabel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssociationLabel
impl Debug for AssociationLabel
Source§impl<'de> Deserialize<'de> for AssociationLabel
impl<'de> Deserialize<'de> for AssociationLabel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AssociationLabel
impl Display for AssociationLabel
impl Eq for AssociationLabel
Source§impl FromStr for AssociationLabel
impl FromStr for AssociationLabel
Source§impl Hash for AssociationLabel
impl Hash for AssociationLabel
Source§impl PartialEq for AssociationLabel
impl PartialEq for AssociationLabel
Source§impl Serialize for AssociationLabel
impl Serialize for AssociationLabel
impl StructuralPartialEq for AssociationLabel
Auto Trait Implementations§
impl Freeze for AssociationLabel
impl RefUnwindSafe for AssociationLabel
impl Send for AssociationLabel
impl Sync for AssociationLabel
impl Unpin for AssociationLabel
impl UnsafeUnpin for AssociationLabel
impl UnwindSafe for AssociationLabel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more