Skip to main content

luaur_analysis/records/
with_predicate.rs

1use crate::type_aliases::predicate_vec::PredicateVec;
2
3#[derive(Debug, Clone)]
4pub struct WithPredicate<T> {
5    pub(crate) r#type: T,
6    pub(crate) predicates: PredicateVec,
7}