1 2 3 4 5 6 7 8
use crate::variable::VariableType; #[derive(Clone, Debug)] pub struct IntelliSenseScope { pub root_data: VariableType, pub current_data: VariableType, pub pointer_data: VariableType, }