pub struct Scope<'a> {
pub recipe_identifier_usage: HashMap<String, HashSet<String>>,
pub unresolved_identifiers: Vec<(String, Range)>,
pub variable_usage: HashMap<String, bool>,
/* private fields */
}Fields§
§recipe_identifier_usage: HashMap<String, HashSet<String>>§unresolved_identifiers: Vec<(String, Range)>§variable_usage: HashMap<String, bool>Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Scope<'a>
impl<'a> RefUnwindSafe for Scope<'a>
impl<'a> Send for Scope<'a>
impl<'a> Sync for Scope<'a>
impl<'a> Unpin for Scope<'a>
impl<'a> UnsafeUnpin for Scope<'a>
impl<'a> UnwindSafe for Scope<'a>
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