| 191 | #[cfg_attr(feature = "visitable", derive(Visitable), visit(children))] |
| 192 | #[derive(NodeWithMetadata)] |
| 193 | pub struct Exact<T, const VALUE: i32>(pub T); |
| 194 | |
| 195 | impl<'a, T: Peek<'a>, const VALUE: i32> Peek<'a> for Exact<T, VALUE> { |
| 196 | const PEEK_KINDSET: KindSet = T::PEEK_KINDSET; |