Trait IntoElement

Source
pub trait IntoElement {
    // Required method
    fn into_element(self) -> Element;
}

Required Methods§

Implementors§

Source§

impl<T> IntoElement for T
where T: Into<Element>,