Trait HyperLabeled

Source
pub trait HyperLabeled<'a>: Labeled<'a> {
    type L: Label;

    // Required method
    fn set_same_label_fn(&mut self, f: Box<dyn Fn(&Self::L, &Self::L) -> bool>);
}

Required Associated Types§

Required Methods§

Source

fn set_same_label_fn(&mut self, f: Box<dyn Fn(&Self::L, &Self::L) -> 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§