PotentiallyUnpopulated

Trait PotentiallyUnpopulated 

Source
pub trait PotentiallyUnpopulated { }
Expand description

A trait for types that may be unpopulated. This trait is used to mark types that may be unpopulated. This is used to allow for the conversion of a PopulatedIterator into a type that may be unpopulated.

Implementations on Foreign Types§

Source§

impl PotentiallyUnpopulated for String

Source§

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

Source§

impl<K, V> PotentiallyUnpopulated for HashMap<K, V>

Source§

impl<T> PotentiallyUnpopulated for BinaryHeap<T>

Source§

impl<T> PotentiallyUnpopulated for BTreeSet<T>

Source§

impl<T> PotentiallyUnpopulated for LinkedList<T>

Source§

impl<T> PotentiallyUnpopulated for VecDeque<T>

Source§

impl<T> PotentiallyUnpopulated for Vec<T>

Source§

impl<T> PotentiallyUnpopulated for HashSet<T>

Implementors§