Enum incrust::container::expression::Factor [] [src]

pub enum Factor {
    Invocation(Invocation),
    Attribute(Attribute),
    Variable(String),
    Literal(Literal),
    Subexpression(DisjExpr),
}

Variants

Trait Implementations

impl Debug for Factor
[src]

Formats the value using the given formatter.

impl PartialEq for Factor
[src]

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

This method tests for !=.

impl Clone for Factor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<Literal> for Factor
[src]

Performs the conversion.

impl From<String> for Factor
[src]

Performs the conversion.

impl From<DisjExpr> for Factor
[src]

Performs the conversion.

impl From<Attribute> for Factor
[src]

Performs the conversion.

impl From<Invocation> for Factor
[src]

Performs the conversion.