Domain

Trait Domain 

Source
pub trait Domain<Idx = usize>: RawDomain<Key = VertexId<Idx>>
where Idx: RawIndex,
{ }
Expand description

An Domain is a trait is a specialization of the RawDomain trait that represents a store for edges, which are collections of vertices. It is used to define the behavior

Implementors§

Source§

impl<S, Idx> Domain<Idx> for S
where Idx: RawIndex, S: RawDomain<Key = VertexId<Idx>>,