pub enum EntityKind {
Concept,
Document,
Dataset,
Project,
Person,
Org,
Artifact,
Service,
}Expand description
8 closed base kinds for graph-node classification (ADR-001).
Governed subtype values live in Entity::entity_type; properties remain
metadata and must not carry ontology type strings.
Variants§
Concept
Algorithms, techniques, architectures, theories, models, research gaps. The default / residual bucket.
Document
Papers, preprints, technical reports, blog posts, books. Has: title, authors, year, venue, DOI/URL.
Dataset
Benchmarks, corpora, evaluation sets. Has: task type, size, metrics, license.
Project
Codebases, libraries, tools, frameworks. Has: language, repo URL, license.
Person
Researchers, engineers, authors.
Org
Labs, companies, institutions.
Artifact
Built artifacts: binaries, model checkpoints, Docker images, packages.
Service
Running or deployable services: APIs, hosted endpoints, SaaS products.
Implementations§
Trait Implementations§
Source§impl Clone for EntityKind
impl Clone for EntityKind
Source§fn clone(&self) -> EntityKind
fn clone(&self) -> EntityKind
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 EntityKind
impl Debug for EntityKind
Source§impl Default for EntityKind
impl Default for EntityKind
Source§fn default() -> EntityKind
fn default() -> EntityKind
Returns the “default value” for a type. Read more
Source§impl Display for EntityKind
impl Display for EntityKind
Source§impl FromStr for EntityKind
impl FromStr for EntityKind
Source§impl Hash for EntityKind
impl Hash for EntityKind
Source§impl PartialEq for EntityKind
impl PartialEq for EntityKind
Source§fn eq(&self, other: &EntityKind) -> bool
fn eq(&self, other: &EntityKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EntityKind
impl Eq for EntityKind
impl StructuralPartialEq for EntityKind
Auto Trait Implementations§
impl Freeze for EntityKind
impl RefUnwindSafe for EntityKind
impl Send for EntityKind
impl Sync for EntityKind
impl Unpin for EntityKind
impl UnsafeUnpin for EntityKind
impl UnwindSafe for EntityKind
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