Trait Typed

Source
pub trait Typed<'a>: Hypergraph<'a> {
    // Required method
    fn type_same(&self, x: &Self::Node, y: &Self::Node) -> bool;
}

Required Methods§

Source

fn type_same(&self, x: &Self::Node, y: &Self::Node) -> bool

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§