pub trait CollectionPlan {
    fn depends_on_into(&self, out: &mut BTreeSet<GlobalId>);

    fn depends_on(&self) -> BTreeSet<GlobalId> { ... }
}
Expand description

A trait for types that describe how to build a collection.

Required Methods§

Appends global identifiers on which this plan depends to out.

Provided Methods§

Returns the global identifiers on which this plan depends.

See CollectionPlan::depends_on_into to reuse an existing BTreeSet.

Implementors§