Struct redis_graph::GraphResultSet[][src]

pub struct GraphResultSet {
    pub header: Vec<String>,
    pub data: Vec<GraphResult>,
    pub metadata: Vec<String>,
}

Contains the result of a Redis graph operation. All types of graph operations will return a result in this format. Some (for example CREATE) will only return data for select fields.

Fields

header: Vec<String>

A list of string keys occuring in the RETURN statement of a query.

data: Vec<GraphResult>

A list of GraphResults with one entry per match of the query.

metadata: Vec<String>

List of metadata returned with the query (eg. affected rows).

Trait Implementations

impl Clone for GraphResultSet[src]

impl Debug for GraphResultSet[src]

impl Default for GraphResultSet[src]

impl FromRedisValue for GraphResultSet[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.