//! Collectors for [`HashSet`]
//!
//! This module corresponds to [`std::collections::hash_set`].
use HashSet;
/// A collector that inserts collected items into a [`HashSet`].
/// Its [`Output`] is [`HashSet`].
///
/// This struct is created by `HashSet::into_collector()`.
///
/// [`Output`]: crate::collector::CollectorBase::Output
);
/// A collector that inserts collected items into a [`&mut HashSet`](HashSet).
/// Its [`Output`] is [`&mut HashSet`](HashSet).
///
/// This struct is created by `HashSet::collector_mut()`.
///
/// [`Output`]: crate::collector::CollectorBase::Output
&'a mut );