Struct silkenweb_html::elements::DelBuilder [−][src]
pub struct DelBuilder(_);
Implementations
impl DelBuilder[src]
impl DelBuilder[src]pub fn id(self, value: impl AttributeValue<String>) -> Self[src]
pub fn class(self, value: impl AttributeValue<String>) -> Self[src]
pub fn cite(self, value: impl AttributeValue<String>) -> Self[src]
A URI for a resource that explains the change (for example, meeting minutes).
pub fn datetime(self, value: impl AttributeValue<String>) -> Self[src]
This attribute indicates the time and date of the change and must be a valid date string with an optional time. If the value cannot be parsed as a date with an optional time string, the element does not have an associated time stamp. For the format of the string without a time, see Date strings. The format of the string if it includes both date and time is covered in Local date and time strings.
impl DelBuilder[src]
impl DelBuilder[src]pub fn on_blur(
self,
f: impl 'static + FnMut(FocusEvent, HtmlModElement)
) -> Self[src]
self,
f: impl 'static + FnMut(FocusEvent, HtmlModElement)
) -> Self
pub fn on_click(
self,
f: impl 'static + FnMut(MouseEvent, HtmlModElement)
) -> Self[src]
self,
f: impl 'static + FnMut(MouseEvent, HtmlModElement)
) -> Self
pub fn on_change(self, f: impl 'static + FnMut(Event, HtmlModElement)) -> Self[src]
pub fn on_dblclick(
self,
f: impl 'static + FnMut(MouseEvent, HtmlModElement)
) -> Self[src]
self,
f: impl 'static + FnMut(MouseEvent, HtmlModElement)
) -> Self
pub fn on_focusout(
self,
f: impl 'static + FnMut(FocusEvent, HtmlModElement)
) -> Self[src]
self,
f: impl 'static + FnMut(FocusEvent, HtmlModElement)
) -> Self
pub fn on_input(
self,
f: impl 'static + FnMut(InputEvent, HtmlModElement)
) -> Self[src]
self,
f: impl 'static + FnMut(InputEvent, HtmlModElement)
) -> Self
pub fn on_keydown(
self,
f: impl 'static + FnMut(KeyboardEvent, HtmlModElement)
) -> Self[src]
self,
f: impl 'static + FnMut(KeyboardEvent, HtmlModElement)
) -> Self
pub fn on_keyup(
self,
f: impl 'static + FnMut(KeyboardEvent, HtmlModElement)
) -> Self[src]
self,
f: impl 'static + FnMut(KeyboardEvent, HtmlModElement)
) -> Self
pub fn effect(self, f: impl Effect<HtmlModElement>) -> Self[src]
impl DelBuilder[src]
impl DelBuilder[src]Trait Implementations
impl Builder for DelBuilder[src]
impl Builder for DelBuilder[src]impl DomElement for DelBuilder[src]
impl DomElement for DelBuilder[src]type Target = HtmlModElement
fn dom_element(&self) -> Self::Target[src]
impl From<DelBuilder> for Element[src]
impl From<DelBuilder> for Element[src]fn from(builder: DelBuilder) -> Self[src]
impl From<DelBuilder> for ElementBuilder[src]
impl From<DelBuilder> for ElementBuilder[src]fn from(builder: DelBuilder) -> Self[src]
Auto Trait Implementations
impl !RefUnwindSafe for DelBuilder
impl !RefUnwindSafe for DelBuilderimpl !Send for DelBuilder
impl !Send for DelBuilderimpl !Sync for DelBuilder
impl !Sync for DelBuilderimpl Unpin for DelBuilder
impl Unpin for DelBuilderimpl !UnwindSafe for DelBuilder
impl !UnwindSafe for DelBuilder