pub enum ElementNodeStorage {
HtmlHtml(HtmlHtmlElementStorage),
HtmlBody(HtmlBodyElementStorage),
HtmlButton(HtmlButtonElementStorage),
}Expand description
Enum of all concrete element storages
Variants§
HtmlHtml(HtmlHtmlElementStorage)
HtmlBody(HtmlBodyElementStorage)
HtmlButton(HtmlButtonElementStorage)
Trait Implementations§
Source§impl Clone for ElementNodeStorage
impl Clone for ElementNodeStorage
Source§fn clone(&self) -> ElementNodeStorage
fn clone(&self) -> ElementNodeStorage
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 moreimpl AnyNodeStorage for ElementNodeStorage
Auto Trait Implementations§
impl Freeze for ElementNodeStorage
impl RefUnwindSafe for ElementNodeStorage
impl Send for ElementNodeStorage
impl Sync for ElementNodeStorage
impl Unpin for ElementNodeStorage
impl UnwindSafe for ElementNodeStorage
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