mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-16 05:34:17 +00:00
13 lines
197 B
Rust
13 lines
197 B
Rust
use crate::*;
|
|
use std::collections::HashSet as InnerHashSet;
|
|
|
|
#[derive(Reflect)]
|
|
pub struct HashSet<T>
|
|
where
|
|
T: Reflect,
|
|
{
|
|
inner: InnerHashSet<T>,
|
|
}
|
|
|
|
impl<T> HashSet<T> where T: Reflect {}
|