Enum edn::query::PatternNonValuePlace [] [src]

pub enum PatternNonValuePlace {
    Placeholder,
    Variable(Variable),
    Entid(i64),
    Ident(ValueRc<Keyword>),
}

e, a, tx can't be values -- no strings, no floats -- and so they can only be variables, entity IDs, ident keywords, or placeholders. This encoding allows us to represent integers that aren't entity IDs. That'll get filtered out in the context of the database.

Variants

Trait Implementations

impl Clone for PatternNonValuePlace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PatternNonValuePlace
[src]

Formats the value using the given formatter. Read more

impl Eq for PatternNonValuePlace
[src]

impl PartialEq for PatternNonValuePlace
[src]

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

This method tests for !=.

impl From<Rc<Keyword>> for PatternNonValuePlace
[src]

Performs the conversion.

impl From<Keyword> for PatternNonValuePlace
[src]

Performs the conversion.

impl FromValue<PatternNonValuePlace> for PatternNonValuePlace
[src]

Auto Trait Implementations

impl !Send for PatternNonValuePlace

impl !Sync for PatternNonValuePlace