[][src]Struct indradb::SpecificVertexQuery

pub struct SpecificVertexQuery {
    pub ids: Vec<Uuid>,
}

Gets a specific set of vertices.

Fields

ids: Vec<Uuid>

The IDs of the vertices to get.

Implementations

impl SpecificVertexQuery[src]

pub fn new(ids: Vec<Uuid>) -> Self[src]

Creates a new vertex query for getting a list of vertices by their IDs.

Arguments

  • ids - The IDs of the vertices to get.

pub fn single(id: Uuid) -> Self[src]

Creates a new vertex query for getting a single vertex.

Arguments

  • id - The ID of the vertex to get.

Trait Implementations

impl Clone for SpecificVertexQuery[src]

impl Debug for SpecificVertexQuery[src]

impl Eq for SpecificVertexQuery[src]

impl From<SpecificVertexQuery> for VertexQuery[src]

impl PartialEq<SpecificVertexQuery> for SpecificVertexQuery[src]

impl StructuralEq for SpecificVertexQuery[src]

impl StructuralPartialEq for SpecificVertexQuery[src]

impl VertexQueryExt for SpecificVertexQuery[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,