Struct rusted_cypher::cypher::result::CypherResult [] [src]

pub struct CypherResult {
    pub columns: Vec<String>,
    pub data: Vec<RowResult>,
}

Holds the result of a cypher query

Fields

columns
data

Methods

impl CypherResult

fn rows(&self) -> Rows

Returns an iterator over the rows of the result

Trait Implementations

impl Deserialize for CypherResult

fn deserialize<__D>(deserializer: &mut __D) -> Result<CypherResult, __D::Error> where __D: Deserializer

Derived Implementations

impl Debug for CypherResult

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for CypherResult

fn clone(&self) -> CypherResult

1.0.0fn clone_from(&mut self, source: &Self)