pub enum SkippedConstruct {
ReflexiveProperty(SctId),
DataProperty(SctId),
ConcreteValue {
attribute: SctId,
},
}Variants§
ReflexiveProperty(SctId)
A ReflexiveObjectProperty axiom — reflexivity isn’t modeled.
DataProperty(SctId)
A SubDataPropertyOf axiom — data (concrete-value) property
hierarchy isn’t modeled.
ConcreteValue
A DataHasValue conjunct on attribute, dropped from whatever
intersection or existential filler it appeared in.
Trait Implementations§
Source§impl Clone for SkippedConstruct
impl Clone for SkippedConstruct
Source§fn clone(&self) -> SkippedConstruct
fn clone(&self) -> SkippedConstruct
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 SkippedConstruct
Source§impl Debug for SkippedConstruct
impl Debug for SkippedConstruct
Source§impl Display for SkippedConstruct
impl Display for SkippedConstruct
impl Eq for SkippedConstruct
Source§impl PartialEq for SkippedConstruct
impl PartialEq for SkippedConstruct
impl StructuralPartialEq for SkippedConstruct
Auto Trait Implementations§
impl Freeze for SkippedConstruct
impl RefUnwindSafe for SkippedConstruct
impl Send for SkippedConstruct
impl Sync for SkippedConstruct
impl Unpin for SkippedConstruct
impl UnsafeUnpin for SkippedConstruct
impl UnwindSafe for SkippedConstruct
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