Trait webcomponent::WebComponent
[−]
[src]
pub trait WebComponent {
fn get_element_name() -> &'static str { ... }
fn get_observable_attributes() -> Vec<&'static str> { ... }
fn constructor() { ... }
fn connected() { ... }
fn disconnected() { ... }
fn attribute_changed(
_attribute_name: String,
_old_value: String,
_new_value: String
) { ... }
}
Provided Methods
fn get_element_name() -> &'static str
fn get_observable_attributes() -> Vec<&'static str>
fn constructor()
fn connected()
fn disconnected()
fn attribute_changed(
_attribute_name: String,
_old_value: String,
_new_value: String
)
_attribute_name: String,
_old_value: String,
_new_value: String
)