pub enum SemanticEntityType {
Show 22 variants
File,
Function,
Type,
Variable,
Module,
Package,
Concept,
Pattern,
Algorithm,
Protocol,
Command,
Operation,
Task,
Error,
Bug,
Fix,
Feature,
Person,
Role,
Url,
Path,
Identifier,
}Expand description
Enhanced entity type with semantic classification
Variants§
File
A source file.
Function
A function or method.
Type
A type, struct, class, or interface.
Variable
A variable or constant.
Module
A module or namespace.
Package
A package, crate, or library.
Concept
A general domain concept.
Pattern
A design or architectural pattern.
Algorithm
An algorithm or computational technique.
Protocol
A communication or network protocol.
Command
A CLI or shell command.
Operation
A runtime operation or action.
Task
A task or work item.
Error
An error or exception.
Bug
A bug or known defect.
Fix
A fix or patch for a defect.
Feature
A product or code feature.
Person
A person or user.
Role
A role or permission level.
Url
A URL or web link.
Path
A filesystem path.
Identifier
A generic identifier or ID.
Implementations§
Trait Implementations§
Source§impl Clone for SemanticEntityType
impl Clone for SemanticEntityType
Source§fn clone(&self) -> SemanticEntityType
fn clone(&self) -> SemanticEntityType
Returns a duplicate of the value. Read more
1.0.0 · 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 SemanticEntityType
impl Debug for SemanticEntityType
Source§impl PartialEq for SemanticEntityType
impl PartialEq for SemanticEntityType
impl Eq for SemanticEntityType
impl StructuralPartialEq for SemanticEntityType
Auto Trait Implementations§
impl Freeze for SemanticEntityType
impl RefUnwindSafe for SemanticEntityType
impl Send for SemanticEntityType
impl Sync for SemanticEntityType
impl Unpin for SemanticEntityType
impl UnsafeUnpin for SemanticEntityType
impl UnwindSafe for SemanticEntityType
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§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.