pub trait SetExt<T>: Sized {
    // Required methods
    fn split_first(self) -> Option<(T, Self)>;
    fn union_with(self, other: Self) -> Self;
    fn plus(self, other: T) -> Self;
}

Required Methods§

source

fn split_first(self) -> Option<(T, Self)>

source

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

source

fn plus(self, other: T) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Ord + Clone> SetExt<T> for Set<T>