pub trait HotReloadingContext {
    // Required methods
    fn map_attribute(
        element_name_rust: &str,
        attribute_name_rust: &str
    ) -> Option<(&'static str, Option<&'static str>)>;
    fn map_element(
        element_name_rust: &str
    ) -> Option<(&'static str, Option<&'static str>)>;
}

Required Methods§

source

fn map_attribute( element_name_rust: &str, attribute_name_rust: &str ) -> Option<(&'static str, Option<&'static str>)>

source

fn map_element( element_name_rust: &str ) -> Option<(&'static str, Option<&'static str>)>

Implementors§