[][src]Trait libpijul::pristine::GraphIter

pub trait GraphIter: GraphTxnT {
    type GraphCursor;
    pub fn iter_graph(
        &self,
        g: &Self::Graph
    ) -> Result<Self::GraphCursor, TxnErr<Self::GraphError>>;
pub fn next_graph(
        &self,
        g: &Self::Graph,
        a: &mut Self::GraphCursor
    ) -> Option<Result<(Vertex<ChangeId>, Edge), TxnErr<Self::GraphError>>>; }

Associated Types

Loading content...

Required methods

pub fn iter_graph(
    &self,
    g: &Self::Graph
) -> Result<Self::GraphCursor, TxnErr<Self::GraphError>>
[src]

pub fn next_graph(
    &self,
    g: &Self::Graph,
    a: &mut Self::GraphCursor
) -> Option<Result<(Vertex<ChangeId>, Edge), TxnErr<Self::GraphError>>>
[src]

Loading content...

Implementors

impl<T: Transaction> GraphIter for GenericTxn<T>[src]

type GraphCursor = Cursor

Loading content...