Added impl of IsOutputType for HashSet

This commit is contained in:
rimutaka 2022-05-31 10:59:39 +12:00
parent 4dd5150bcb
commit efaf4d1c1c

View file

@ -249,6 +249,17 @@ where
}
}
impl<S, T> IsOutputType<S> for std::collections::HashSet<T>
where
T: IsOutputType<S>,
S: ScalarValue,
{
#[inline]
fn mark() {
T::mark()
}
}
impl<S, T> IsOutputType<S> for [T]
where
T: IsOutputType<S>,