pub struct DomSideTables {
pub form_controls: BTreeMap<NodeId, FormControlState>,
pub selection: BTreeMap<NodeId, SelectionState>,
pub file_inputs: BTreeMap<NodeId, FileInputState>,
pub dialogs: BTreeMap<NodeId, DialogState>,
pub layout_stub: BTreeMap<NodeId, LayoutStubState>,
}Fields§
§form_controls: BTreeMap<NodeId, FormControlState>§selection: BTreeMap<NodeId, SelectionState>§file_inputs: BTreeMap<NodeId, FileInputState>§dialogs: BTreeMap<NodeId, DialogState>§layout_stub: BTreeMap<NodeId, LayoutStubState>Trait Implementations§
Source§impl Clone for DomSideTables
impl Clone for DomSideTables
Source§fn clone(&self) -> DomSideTables
fn clone(&self) -> DomSideTables
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 DomSideTables
impl Debug for DomSideTables
Source§impl Default for DomSideTables
impl Default for DomSideTables
Source§fn default() -> DomSideTables
fn default() -> DomSideTables
Returns the “default value” for a type. Read more
Source§impl PartialEq for DomSideTables
impl PartialEq for DomSideTables
impl Eq for DomSideTables
impl StructuralPartialEq for DomSideTables
Auto Trait Implementations§
impl Freeze for DomSideTables
impl RefUnwindSafe for DomSideTables
impl Send for DomSideTables
impl Sync for DomSideTables
impl Unpin for DomSideTables
impl UnsafeUnpin for DomSideTables
impl UnwindSafe for DomSideTables
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