Struct horned_owl::model::AnnotatedAxiom[][src]

pub struct AnnotatedAxiom {
    pub axiom: Axiom,
    pub annotation: BTreeSet<Annotation>,
}

An AnnotatedAxiom is an Axiom with one or more Annotation.

Fields

Methods

impl AnnotatedAxiom
[src]

Trait Implementations

impl Debug for AnnotatedAxiom
[src]

Formats the value using the given formatter. Read more

impl Eq for AnnotatedAxiom
[src]

impl Hash for AnnotatedAxiom
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for AnnotatedAxiom
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for AnnotatedAxiom
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for AnnotatedAxiom
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl From<Axiom> for AnnotatedAxiom
[src]

Performs the conversion.

impl Kinded for AnnotatedAxiom
[src]

impl From<OntologyAnnotation> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<DeclareClass> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<DeclareObjectProperty> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<DeclareAnnotationProperty> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<SubClass> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<EquivalentClass> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<DisjointClass> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<SubObjectProperty> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<InverseObjectProperty> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<TransitiveObjectProperty> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<AssertAnnotation> for AnnotatedAxiom
[src]

Performs the conversion.

impl From<SubAnnotationProperty> for AnnotatedAxiom
[src]

Performs the conversion.

Auto Trait Implementations