pub trait GeneratePolarizations {
// Required methods
fn generate_polarizations_of<S: SubSetLike>(&self, subgraph: &S) -> Atom;
fn generate_polarization_parameters_of<S: SubSetLike>(
&self,
subgraph: &S,
) -> Vec<Atom>;
}Required Methods§
Sourcefn generate_polarizations_of<S: SubSetLike>(&self, subgraph: &S) -> Atom
fn generate_polarizations_of<S: SubSetLike>(&self, subgraph: &S) -> Atom
Returns the polarizations of the given subgraph. One polarization per half-edge. If you only want those that are dangling first get the crown of the subgraph.
fn generate_polarization_parameters_of<S: SubSetLike>( &self, subgraph: &S, ) -> Vec<Atom>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".