pub struct SlotMap {
pub slots: HashMap<Arc<str>, usize>,
pub count: usize,
}Expand description
Slot assignment for each let/bind-introduced name.
Fields§
§slots: HashMap<Arc<str>, usize>§count: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for SlotMap
impl RefUnwindSafe for SlotMap
impl Send for SlotMap
impl Sync for SlotMap
impl Unpin for SlotMap
impl UnsafeUnpin for SlotMap
impl UnwindSafe for SlotMap
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