pub enum RelationKind {
Link,
Inherits,
}Expand description
The kind of a relation — link or inheritance.
Display writes "link" / "inherits". Derives Ord + PartialOrd with
Link declared before Inherits, so derived Ord puts link relations
before inherits relations for the same source under D6’s tuple sort
(source, kind, field, target). Copy / Eq cover invariant assertions.
No serde derive.
Variants§
Link
A link field on the source resource-type points to the target resource-type.
The field name labels the relation. Display: "link".
Variant order is load-bearing: Link is declared before Inherits so
that derived Ord gives Link < Inherits, making link relations sort before
inherits relations for the same source (D6).
Inherits
The source resource-type extends the target as a superclass. Display: "inherits".
Trait Implementations§
Source§impl Clone for RelationKind
impl Clone for RelationKind
Source§fn clone(&self) -> RelationKind
fn clone(&self) -> RelationKind
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 moreimpl Copy for RelationKind
Source§impl Debug for RelationKind
impl Debug for RelationKind
Source§impl Display for RelationKind
impl Display for RelationKind
impl Eq for RelationKind
Source§impl Ord for RelationKind
impl Ord for RelationKind
Source§fn cmp(&self, other: &RelationKind) -> Ordering
fn cmp(&self, other: &RelationKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RelationKind
impl PartialEq for RelationKind
Source§impl PartialOrd for RelationKind
impl PartialOrd for RelationKind
impl StructuralPartialEq for RelationKind
Auto Trait Implementations§
impl Freeze for RelationKind
impl RefUnwindSafe for RelationKind
impl Send for RelationKind
impl Sync for RelationKind
impl Unpin for RelationKind
impl UnsafeUnpin for RelationKind
impl UnwindSafe for RelationKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.