pub trait Meet {
    // Required method
    fn meet(self, other: Self) -> Self;
}

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Meet for Option<DefId>

source§

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

Implementors§