Trait HyperSimulation

Source
pub trait HyperSimulation<'a> {
    type Node: 'a;

    // Required method
    fn get_hyper_simulation_inter(
        &'a self,
        other: &'a Self,
    ) -> HashMap<&'a Self::Node, HashSet<&'a Self::Node>>;
}

Required Associated Types§

Source

type Node: 'a

Required Methods§

Source

fn get_hyper_simulation_inter( &'a self, other: &'a Self, ) -> HashMap<&'a Self::Node, HashSet<&'a Self::Node>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§