pub enum EngineKind {
El,
Rdfs,
Rl,
Alc,
Dl,
Swrl,
Hybrid,
}Expand description
Dispatch key for a profile-specific reasoning engine.
Variants§
El
OWL EL completion-based classification.
Rdfs
RDFS materialization via reasonable.
Rl
OWL RL forward-chaining saturation.
Alc
OWL ALC tableau-lite classification.
Dl
OWL 2 DL coupled saturation + tableau.
Swrl
DLSafe SWRL with DL classification.
Hybrid
Auto-detected hybrid ontology (multiple profile modules).
Trait Implementations§
Source§impl Clone for EngineKind
impl Clone for EngineKind
Source§fn clone(&self) -> EngineKind
fn clone(&self) -> EngineKind
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 EngineKind
Source§impl Debug for EngineKind
impl Debug for EngineKind
impl Eq for EngineKind
Source§impl Hash for EngineKind
impl Hash for EngineKind
Source§impl PartialEq for EngineKind
impl PartialEq for EngineKind
Source§fn eq(&self, other: &EngineKind) -> bool
fn eq(&self, other: &EngineKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EngineKind
Auto Trait Implementations§
impl Freeze for EngineKind
impl RefUnwindSafe for EngineKind
impl Send for EngineKind
impl Sync for EngineKind
impl Unpin for EngineKind
impl UnsafeUnpin for EngineKind
impl UnwindSafe for EngineKind
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