Complement

Trait Complement 

Source
pub trait Complement {
    // Required method
    fn complement(&self) -> Self;
}

Required Methods§

Source

fn complement(&self) -> Self

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§

Source§

impl<Bound: Width + Num> Complement for IntervalSet<Bound>