Trait flow_arena::FlowCheck[][src]

pub trait FlowCheck {
    fn check(&self) -> Result<(), (FlowError, String)>;

    fn check_assert(&self) { ... }
}

checks the Flow’s properties and see whether they hold

Required methods

Loading content...

Provided methods

fn check_assert(&self)[src]

panics if anything went wrong. Iff in debug state.

Loading content...

Implementors

impl<Id, FlowNode> FlowCheck for FlowArena<Id, FlowNode> where
    Id: Clone + Hash + Eq + Default + Debug,
    FlowNode: Node<Id> + Default + Debug + Clone
[src]

Loading content...