Trait nanvm_lib::range_map::Union

source ·
pub trait Union {
    // Required method
    fn union(self, other: Self) -> Self;
}

Required Methods§

source

fn union(self, other: Self) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Union for State<T>
where T: Eq,