has_some

Trait HasSome

Source
pub trait HasSome {
    // Required method
    fn has_some(&self) -> bool;
}

Required Methods§

Source

fn has_some(&self) -> bool

Implementations on Foreign Types§

Source§

impl HasSome for String

Source§

fn has_some(&self) -> bool

Source§

impl HasSome for CStr

Source§

fn has_some(&self) -> bool

Source§

impl<Idx: PartialOrd<Idx>> HasSome for Range<Idx>

Source§

fn has_some(&self) -> bool

Source§

impl<Idx: PartialOrd<Idx>> HasSome for RangeInclusive<Idx>

Source§

fn has_some(&self) -> bool

Source§

impl<K, V> HasSome for BTreeMap<K, V>

Source§

fn has_some(&self) -> bool

Source§

impl<K, V, S: BuildHasher> HasSome for HashMap<K, V, S>

Source§

fn has_some(&self) -> bool

Source§

impl<T> HasSome for [T]

Source§

fn has_some(&self) -> bool

Source§

impl<T> HasSome for BinaryHeap<T>

Source§

fn has_some(&self) -> bool

Source§

impl<T> HasSome for BTreeSet<T>

Source§

fn has_some(&self) -> bool

Source§

impl<T> HasSome for LinkedList<T>

Source§

fn has_some(&self) -> bool

Source§

impl<T> HasSome for VecDeque<T>

Source§

fn has_some(&self) -> bool

Source§

impl<T> HasSome for Vec<T>

Source§

fn has_some(&self) -> bool

Source§

impl<T, S: BuildHasher> HasSome for HashSet<T, S>

Source§

fn has_some(&self) -> bool

Implementors§