pub struct DomIndexes {
pub id_index: BTreeMap<String, NodeId>,
pub name_index: BTreeMap<String, Vec<NodeId>>,
pub tag_index: BTreeMap<String, Vec<NodeId>>,
pub class_index: BTreeMap<String, Vec<NodeId>>,
}Fields§
§id_index: BTreeMap<String, NodeId>§name_index: BTreeMap<String, Vec<NodeId>>§tag_index: BTreeMap<String, Vec<NodeId>>§class_index: BTreeMap<String, Vec<NodeId>>Trait Implementations§
Source§impl Clone for DomIndexes
impl Clone for DomIndexes
Source§fn clone(&self) -> DomIndexes
fn clone(&self) -> DomIndexes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DomIndexes
impl Debug for DomIndexes
Source§impl Default for DomIndexes
impl Default for DomIndexes
Source§fn default() -> DomIndexes
fn default() -> DomIndexes
Returns the “default value” for a type. Read more
Source§impl PartialEq for DomIndexes
impl PartialEq for DomIndexes
impl Eq for DomIndexes
impl StructuralPartialEq for DomIndexes
Auto Trait Implementations§
impl Freeze for DomIndexes
impl RefUnwindSafe for DomIndexes
impl Send for DomIndexes
impl Sync for DomIndexes
impl Unpin for DomIndexes
impl UnsafeUnpin for DomIndexes
impl UnwindSafe for DomIndexes
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