Trait IntoValueSet

Source
pub trait IntoValueSet<T> {
    // Required method
    fn into_value_set(self) -> HashSet<Value<T>>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<'a, T, U> IntoValueSet<T> for &'a [U]
where T: Hash + Eq, U: IntoValue<T> + Clone,

Source§

impl<T, U> IntoValueSet<T> for HashSet<U>
where T: Hash + Eq, U: IntoValue<T>,

Source§

impl<T, U, const S: usize> IntoValueSet<T> for [U; S]
where T: Hash + Eq, U: IntoValue<T>,

Implementors§