Skip to main content

luaur_analysis/records/
iterator.rs

1use crate::records::constraint_list::ConstraintList;
2use core::ptr::NonNull;
3
4#[derive(Debug, Clone)]
5pub struct Iterator {
6    pub(crate) cl: NonNull<ConstraintList>,
7    pub(crate) index: usize,
8}