/// Traits concerning dynamic bigraphs, i.e. bigraphs that can be mutated.
pubmoddynamic_bigraph;/// Traits concerning static bigraphs, i.e. bigraphs that are immutable.
pubmodstatic_bigraph;/// A type of data that can be mirrored.
/// This is used to map nodes or edges to their mirrors.
pubtraitBidirectedData{/// Compute the mirror of this data.
fnmirror(&self)->Self;}implBidirectedData for () {fnmirror(&self)->Self{}}