pub enum EndpointKind {
NoteOfKind(&'static str),
EntityOfKind(&'static str),
}Expand description
Match spec for one end of an EdgeEndpointRule (ADR-031).
Identifies a substrate + kind pair that the rule applies to. Note that
kind strings refer to the pack-declared note kinds / entity kinds — not
the closed EdgeRelation set, which is universal.
Variants§
NoteOfKind(&'static str)
A note whose kind field equals the given string (e.g. "task").
EntityOfKind(&'static str)
An entity whose kind field equals the given string (e.g. "concept").
Trait Implementations§
Source§impl Clone for EndpointKind
impl Clone for EndpointKind
Source§fn clone(&self) -> EndpointKind
fn clone(&self) -> EndpointKind
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 EndpointKind
impl Debug for EndpointKind
Source§impl PartialEq for EndpointKind
impl PartialEq for EndpointKind
Source§fn eq(&self, other: &EndpointKind) -> bool
fn eq(&self, other: &EndpointKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EndpointKind
impl Eq for EndpointKind
impl StructuralPartialEq for EndpointKind
Auto Trait Implementations§
impl Freeze for EndpointKind
impl RefUnwindSafe for EndpointKind
impl Send for EndpointKind
impl Sync for EndpointKind
impl Unpin for EndpointKind
impl UnsafeUnpin for EndpointKind
impl UnwindSafe for EndpointKind
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> 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.