mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-16 13:34:19 +00:00
12 lines
142 B
Rust
12 lines
142 B
Rust
use crate::*;
|
|
|
|
#[derive(Reflect)]
|
|
pub struct LinkedList<T>
|
|
where
|
|
T: Reflect,
|
|
{
|
|
inner: T,
|
|
}
|
|
|
|
impl<T> LinkedList<T> where T: Reflect {}
|