Skip to main content

luaur_analysis/records/
table_indexer.rs

1use crate::type_aliases::type_id::TypeId;
2
3#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
4pub struct TableIndexer {
5    pub index_type: TypeId,
6    pub index_result_type: TypeId,
7    pub is_read_only: bool,
8}
9
10unsafe impl Send for TableIndexer {}
11unsafe impl Sync for TableIndexer {}