Added impl of IsOutputType for HashSet
This commit is contained in:
parent
4dd5150bcb
commit
efaf4d1c1c
1 changed files with 11 additions and 0 deletions
|
@ -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>,
|
||||
|
|
Loading…
Reference in a new issue