Trait cayley::path::Query [-]  [+] [src]

pub trait Query: Path {
    fn set_finalized(&mut self);
    fn is_finalized(&self) -> bool;

    fn All(&mut self) -> &mut Self { ... }
    fn GetLimit(&mut self, limit: int) -> &mut Self { ... }
}

Required Methods

fn set_finalized(&mut self)

fn is_finalized(&self) -> bool

Provided Methods

fn All(&mut self) -> &mut Self

.All Query method. Equivalent to Gremlin Query.All(). Returns all the items found within this path.

fn GetLimit(&mut self, limit: int) -> &mut Self

.GetLimit Query method. Equivalent to Gremlin Query.GetLimit(<number>). Returns first <n> items found within this path.

Implementors