pub struct DeclTable {
pub entries: HashMap<String, (String, usize)>,
}Expand description
A declaration table mapping names to their source locations.
Fields§
§entries: HashMap<String, (String, usize)>Map from name to (filename, line)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeclTable
impl RefUnwindSafe for DeclTable
impl Send for DeclTable
impl Sync for DeclTable
impl Unpin for DeclTable
impl UnsafeUnpin for DeclTable
impl UnwindSafe for DeclTable
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