pub trait MaybeContains<Item> { }
Expand description

A trait marking whether T is maybe present.

See Traits section of crate documentation for more information.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Item> MaybeContains<Item> for Nil

source§

impl<Item, H, T> MaybeContains<Item> for Cons<H, T>
where Item: 'static, H: 'static, Self: LocalMaybeContains<Item, { _ }>,