[][src]Trait hobo::RawElement

pub trait RawElement {
    type RawElementType: AsRef<Element>;
    fn raw_element(&self) -> &Self::RawElementType;
}

Trait for all hobo components which have a particular known web_sys::Element at their root

Associated Types

Loading content...

Required methods

fn raw_element(&self) -> &Self::RawElementType

Loading content...

Implementors

impl<T: AsRef<Element> + 'static> RawElement for BasicElement<T>[src]

type RawElementType = T

Loading content...