Enum indradb::VertexQuery [] [src]

pub enum VertexQuery {
    All {
        start_id: Option<Uuid>,
        limit: u32,
    },
    Vertices {
        ids: Vec<Uuid>,
    },
    Pipe {
        edge_query: Box<EdgeQuery>,
        converter: QueryTypeConverter,
        limit: u32,
    },
}

A query for vertices.

This is used by transactions to get, set and delete vertices and vertex metadata.

Variants

Fields of All

Fields of Vertices

Fields of Pipe

Methods

impl VertexQuery
[src]

[src]

[src]

Trait Implementations

impl Eq for VertexQuery
[src]

impl PartialEq for VertexQuery
[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 VertexQuery
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VertexQuery
[src]

[src]

Formats the value using the given formatter.

impl Hash for VertexQuery
[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