pub enum ConceptType {
Entity,
Concept,
Process,
Property,
Relationship,
Other,
}Expand description
Type of concept extracted by LLM.
Variants§
Entity
A named entity (person, place, organization).
Concept
A scientific or technical concept.
Process
A process or action.
Property
A property or attribute.
Relationship
A relationship or connection.
Other
Unknown or unclassified.
Trait Implementations§
Source§impl Clone for ConceptType
impl Clone for ConceptType
Source§fn clone(&self) -> ConceptType
fn clone(&self) -> ConceptType
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 ConceptType
impl Debug for ConceptType
Source§impl Default for ConceptType
impl Default for ConceptType
Source§impl<'de> Deserialize<'de> for ConceptType
impl<'de> Deserialize<'de> for ConceptType
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 PartialEq for ConceptType
impl PartialEq for ConceptType
Source§impl Serialize for ConceptType
impl Serialize for ConceptType
impl Eq for ConceptType
impl StructuralPartialEq for ConceptType
Auto Trait Implementations§
impl Freeze for ConceptType
impl RefUnwindSafe for ConceptType
impl Send for ConceptType
impl Sync for ConceptType
impl Unpin for ConceptType
impl UnwindSafe for ConceptType
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