Enum indradb::EdgeQuery [] [src]

pub enum EdgeQuery {
    Edges {
        keys: Vec<EdgeKey>,
    },
    Pipe {
        vertex_query: Box<VertexQuery>,
        converter: EdgeDirection,
        type_filter: Option<Type>,
        high_filter: Option<DateTime<Utc>>,
        low_filter: Option<DateTime<Utc>>,
        limit: u32,
    },
}

A query for edges.

This is used by transactions to get, set and delete edges and edge metadata.

Variants

Fields of Edges

Fields of Pipe

Methods

impl EdgeQuery
[src]

Trait Implementations

impl Eq for EdgeQuery
[src]

impl PartialEq for EdgeQuery
[src]

[src]

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

[src]

This method tests for !=.

impl Clone for EdgeQuery
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EdgeQuery
[src]

[src]

Formats the value using the given formatter.

impl Hash for EdgeQuery
[src]

[src]

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

1.3.0
[src]

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