Enum clingo::TheoryTermType [] [src]

pub enum TheoryTermType {
    Tuple,
    List,
    Set,
    Function,
    Number,
    Symbol,
}

Enumeration of theory term types.

Variants

A tuple term, e.g., (1,2,3)

A list term, e.g., [1,2,3]

A set term, e.g., {1,2,3}

A function term, e.g., f(1,2,3)

A number term, e.g., 42

A symbol term, e.g., c

Trait Implementations

impl Debug for TheoryTermType
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for TheoryTermType
[src]

impl Clone for TheoryTermType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations