pub struct ClassifiedModule {
pub profile: OwlProfile,
pub signature: Vec<String>,
pub axiom_ids: Vec<AxiomId>,
}Expand description
One classified module in a hybrid ontology.
Fields§
§profile: OwlProfileDetected OWL profile for this module.
signature: Vec<String>Entity signature (class IRIs) in the module.
axiom_ids: Vec<AxiomId>Axioms belonging to this module.
Trait Implementations§
Source§impl Clone for ClassifiedModule
impl Clone for ClassifiedModule
Source§fn clone(&self) -> ClassifiedModule
fn clone(&self) -> ClassifiedModule
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 moreAuto Trait Implementations§
impl Freeze for ClassifiedModule
impl RefUnwindSafe for ClassifiedModule
impl Send for ClassifiedModule
impl Sync for ClassifiedModule
impl Unpin for ClassifiedModule
impl UnsafeUnpin for ClassifiedModule
impl UnwindSafe for ClassifiedModule
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