pub trait SubsetIndexable<S, Output> {
    // Required method
    fn get_set_containing(&self, subset: &S) -> Option<Output>;
}

Required Methods§

source

fn get_set_containing(&self, subset: &S) -> Option<Output>

Implementors§