pub trait Or {
    // Required method
    fn or(&self, n: &Self) -> Self;
}

Required Methods§

source

fn or(&self, n: &Self) -> Self

Implementors§