pub struct Scope {
pub scope_type: ScopeType,
pub scope_name: String,
pub sub_scope_idx: Vec<ScopeIndex>,
pub variables: Vec<VariableIndex>,
}Fields§
§scope_type: ScopeType§scope_name: String§sub_scope_idx: Vec<ScopeIndex>§variables: Vec<VariableIndex>Auto Trait Implementations§
impl RefUnwindSafe for Scope
impl Send for Scope
impl Sync for Scope
impl Unpin for Scope
impl UnwindSafe for Scope
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more