struct TreeIndexMap {
id_to_index: HashMap<TreeId, TreeIndex>,
index_to_id: HashMap<TreeIndex, TreeId>,
next: u32,
}Fields§
§id_to_index: HashMap<TreeId, TreeIndex>§index_to_id: HashMap<TreeIndex, TreeId>§next: u32Implementations§
Trait Implementations§
Source§impl Debug for TreeIndexMap
impl Debug for TreeIndexMap
Source§impl Default for TreeIndexMap
impl Default for TreeIndexMap
Source§fn default() -> TreeIndexMap
fn default() -> TreeIndexMap
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TreeIndexMap
impl RefUnwindSafe for TreeIndexMap
impl Send for TreeIndexMap
impl Sync for TreeIndexMap
impl Unpin for TreeIndexMap
impl UnwindSafe for TreeIndexMap
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